/* ==========================================================================
   MAIN STYLESHEET (assets/css/main.css)
   ========================================================================== */

/* ─── 1) GLOBAL RESETS ─────────────────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  color: #333;
}
/* Remove default list bullets */
ul, ol {
  list-style: none;
}

/* ─── 2) HEADER / NAV ──────────────────────────────────────────────────────── */
.site-header {
  background-color: #003057;  /* your navy */
  padding: 1rem 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.site-nav ul {
  display: flex;
  gap: 1.5rem;
}
.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.site-nav a:hover {
  text-decoration: underline;
}

/* ─── 3) BUTTONS / CTAs ────────────────────────────────────────────────────── */
.btn,
button {
  display: inline-block;
  background-color: #FF6600;  /* your orange */
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover,
button:hover {
  opacity: 0.9;
}

/* ─── 4) CONTAINERS ───────────────────────────────────────────────────────── */
.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

/* ─── 5) SECTION TITLES ───────────────────────────────────────────────────── */
h2 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
  color: #003057;
}

/* Feel free to add more component‑specific styles here */
/* === EMOTIONAL DIAGNOSTICS SECTION === */
/* ===== EMOTIONAL DIAGNOSTICS SECTION ===== */
.diagnostics-section {
  margin-top: 80px;
}

.diagnostics-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.diagnostics-text {
  flex: 1;
  min-width: 300px;
}

.diagnostics-image {
  flex: 1;
  text-align: center;
}

.diagnostics-image img {
  max-width: 100%;
  height: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .diagnostics-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .diagnostics-text .cta-button {
    display: inline-block;
    margin-top: 20px;
  }
}

.diagnostics-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin: 4rem 0;
}

.diagnostics-section .text {
  flex: 1 1 400px;
  max-width: 600px;
}

.diagnostics-section .text h2 {
  font-size: 1.75rem;
  color: #003057;
  margin-bottom: 1rem;
}

.diagnostics-section .text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.diagnostics-section .text .btn {
  background-color: #FF6600;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
}

.diagnostics-section img {
  max-width: 100%;
  height: auto;
  flex: 1 1 300px;
}

/* === MOBILE RESPONSIVENESS === */
@media (max-width: 768px) {
  .diagnostics-section {
    flex-direction: column;
    text-align: center;
  }

  .diagnostics-section .text,
  .diagnostics-section img {
    max-width: 100%;
  }

  .diagnostics-section .text .btn {
    margin: 1rem auto 0;
  }
}
