:root {
    --primary: #3f907a;
    --primary-light: #e6f3f2;
    --text-dark: #1f2d2b;
    --text-muted: #5f6f73;
    --bg-light: #ffffff;
    --bg-section: #f7fbfa;
    --border-soft: #e2eceb;
    font-family: Inter, sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
  }

  @supports (font-variation-settings: normal) {
    :root { font-family: InterVariable, sans-serif; }
  }

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

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

  body {
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
  }

  a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
  }

  img {
    max-width: 100%;
    display: block;
    border-radius: 12px;
  }

  section {
    padding: 80px 20px;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 16px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  p {
    color: var(--text-muted);
    margin-bottom: 16px;
    max-width: 700px;
  }

  .text-light {
    font-weight: 200
  }

  /* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

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

.logo {
  color: var(--text-dark);
}

.logo span {
  color: var(--primary);
  margin-left: 4px;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--text-muted);
  font-weight: 300;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--primary);
}

.nav-instagram {
  color: var(--primary);
  font-weight: 600;
}

.header-cta .btn.small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 900px) {
  .nav {
    display: none;
  }
}


  /* HERO */
  .hero {
    background: linear-gradient(135deg, var(--primary-light), #ffffff);
    padding: 100px 20px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hero-grid a{
    text-align: center;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 14px;
    font-weight: 600;
    margin-right: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .btn.secondary {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
  }

  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(63, 144, 139, 0.25);
  }

  /* SECTIONS */
  .section-light {
    background: var(--bg-section);
  }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  ul {
    padding-left: 34px;
  }

  li {
    padding-left: 12px;
    position: relative;
    color: var(--text-muted);
  }

  .about-program {
    padding-bottom: 40px
  }

  .about-program ul {
    list-style: none;
    padding-left: 0;
  }

  .about-program ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-muted);
  }

  .about-program ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
  }

  /* CARDS */
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }

  .cards.testimonials{
    grid-template-columns: 1fr;
  }

  @media (min-width: 640px) {
      .cards.testimonials {
          grid-template-columns: repeat(2, minmax(260px, 1fr));
      }
  }

  .card {
    background: #fff;
    border: 1px solid var(--border-soft);
    padding: 30px;
    border-radius: 16px;
  }

  /* FAQ */
  .faq-item {
    border-bottom: 1px solid var(--border-soft);
    padding: 20px 0;
  }

  .faq-item h3 {
    margin-bottom: 8px;
  }

  .text-align {
    text-align: center;
  }

  /* CTA */
  .cta {
    background: var(--primary);
    color: #fff;
    text-align: center;
  }

  .cta h2, .cta p {
    color: #fff;
  }

  footer {
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  @media (max-width: 900px) {
    .hero {
      padding: 40px 20px;
    }
    .hero-grid, .two-col {
      grid-template-columns: 1fr;
    }

    .hero-grid .links {
      text-align: center;
    }

    .hero-grid img {
      margin: 0 auto;
    }

    h1 {
      font-size: 2.3rem;
    }
  }

.links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Base button */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

/* Primary CTA */
.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(63, 144, 139, 0.35);
}

/* Title & subtitle inside big button */
.btn-title {
  font-size: 1rem;
  font-weight: 700;
}

.btn-subtitle {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 4px;
  font-weight: 300;
}

/* Secondary CTA */
.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 14px 20px;
}

.btn-secondary:hover {
  background: var(--primary-light);
}

/* Mobile */
@media (max-width: 600px) {
  .links {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}


.about-program .subheading {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.bottom-statement{
  background-color: var(--primary);
    font-size: 1.2rem;
    max-width: none;
    color: #fff;
      padding: 30px 20px;
    text-align: center;
}

.faq-item p {
  max-width: initial;
}