@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Nunito:wght@600;700;800&display=swap");

:root {
      --color-forest: #166534;
      --color-sand: #fef3c7;
      --color-white: #ffffff;
      --color-light: #fafaf8;
      --color-dark: #1a1a18;
      --color-text: #2d2d2a;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      width: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: 'Lato', sans-serif;
      color: var(--color-text);
      background: var(--color-white);
      line-height: 1.6;
      font-size: 16px;
    }

    h1, h2, h3 {
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    h1 {
      font-size: 3.5rem;
      line-height: 1.1;
      margin-bottom: 0.5rem;
    }

    h2 {
      font-size: 2.2rem;
      line-height: 1.2;
      margin-bottom: 0.75rem;
      color: var(--color-forest);
    }

    h3 {
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
    }

    p {
      margin-bottom: 1rem;
      max-width: 600px;
      line-height: 1.7;
    }

    a {
      color: var(--color-forest);
      text-decoration: none;
      transition: opacity 0.2s;
    }

    a:hover {
      opacity: 0.7;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Header & Navigation */
    header {
      background: var(--color-white);
      border-bottom: 1px solid #e5e5e0;
      padding: 2rem 0;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    header .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .brand {
      font-family: 'Nunito', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--color-forest);
      letter-spacing: 0.5px;
    }

    nav {
      display: flex;
      gap: 3rem;
      list-style: none;
    }

    nav a {
      font-size: 0.95rem;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--color-text);
      border-bottom: 2px solid transparent;
      padding-bottom: 0.25rem;
      transition: all 0.3s;
    }

    nav a:hover {
      border-bottom-color: var(--color-forest);
      opacity: 1;
    }

    nav a.active {
      color: var(--color-forest);
      border-bottom-color: var(--color-forest);
    }

    /* Layout */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    main {
      min-height: 60vh;
    }

    section {
      padding: 6rem 0;
    }

    section.alt-bg {
      background: var(--color-light);
    }

    /* Hero Section */
    .hero {
      padding: 5rem 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-image {
      height: 500px;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-content h1 {
      color: var(--color-forest);
      margin-bottom: 1.5rem;
    }

    .hero-content p {
      font-size: 1.1rem;
      color: var(--color-text);
      margin-bottom: 2rem;
    }

    /* Featured Stat */
    .featured-stat {
      background: linear-gradient(135deg, var(--color-sand) 0%, rgba(254,243,199,0.5) 100%);
      padding: 4rem 2rem;
      border-radius: 4px;
      text-align: center;
      margin: 4rem 0;
    }

    .featured-stat p {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--color-forest);
      max-width: 100%;
      margin: 0 auto;
      line-height: 1.8;
    }

    /* Content Pillars */
    .pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .pillar {
      background: var(--color-white);
      padding: 2rem;
      border-radius: 4px;
      border-left: 4px solid var(--color-forest);
    }

    .pillar h3 {
      margin-bottom: 1rem;
      color: var(--color-forest);
    }

    .pillar p {
      font-size: 0.95rem;
    }

    /* Audience Scope Section */
    .scope-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-top: 3rem;
    }

    .scope-image {
      height: 400px;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .scope-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .scope-content h3 {
      margin-bottom: 1.5rem;
      color: var(--color-forest);
    }

    .scope-content p {
      margin-bottom: 1rem;
    }

    /* CTA Section */
    .cta-section {
      text-align: center;
      padding: 5rem 2rem;
    }

    .cta-section h2 {
      margin-bottom: 1rem;
    }

    .cta-section p {
      max-width: 100%;
      margin: 0 auto 3rem;
      font-size: 1.05rem;
    }

    .cta-links {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-button {
      display: inline-block;
      padding: 1rem 2.5rem;
      background: var(--color-forest);
      color: var(--color-white);
      border-radius: 4px;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: all 0.3s;
      text-decoration: none;
    }

    .cta-button:hover {
      background: var(--color-dark);
      opacity: 1;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(22,101,52,0.3);
    }

    /* Footer */
    footer {
      background: var(--color-dark);
      color: var(--color-white);
      padding: 4rem 0 2rem;
      margin-top: 6rem;
    }

    footer .container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-bottom: 3rem;
    }

    footer h4 {
      font-family: 'Nunito', sans-serif;
      font-size: 1rem;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--color-sand);
    }

    footer p, footer a {
      font-size: 0.9rem;
      line-height: 1.8;
      color: #d0d0cc;
    }

    footer a {
      color: var(--color-sand);
      display: inline-block;
      margin-bottom: 0.5rem;
    }

    footer a:hover {
      text-decoration: underline;
    }

    .footer-bottom {
      border-top: 1px solid #444;
      padding-top: 2rem;
      text-align: center;
      font-size: 0.85rem;
      color: #999;
    }

    /* Responsive */
    @media (max-width: 768px) {
      h1 {
        font-size: 2.2rem;
      }

      h2 {
        font-size: 1.6rem;
      }

      .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .hero-image {
        height: 300px;
      }

      .pillars {
        grid-template-columns: 1fr;
      }

      .scope-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .scope-image {
        height: 300px;
      }

      nav {
        gap: 1.5rem;
      }

      nav a {
        font-size: 0.8rem;
      }

      footer .container {
        grid-template-columns: repeat(2, 1fr);
      }

      section {
        padding: 4rem 0;
      }

      .cta-links {
        flex-direction: column;
        align-items: center;
      }

      .cta-button {
        width: 100%;
        max-width: 300px;
      }
    }

    @media (max-width: 480px) {
      header .container {
        flex-direction: column;
        gap: 1rem;
      }

      nav {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
      }

      h1 {
        font-size: 1.8rem;
      }

      h2 {
        font-size: 1.3rem;
      }

      footer .container {
        grid-template-columns: 1fr;
      }
    }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
