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

    :root {
      --green-dark: #03332e;
      --green-mid: #1a2e2a;
      --green-light: #2f4e47;
      --green-border: #3d6357;
      --cream: #f7f3ec;
      --off-white: #f5f7f7;
      --white: #ffffff;
      --text-dark: #1a2e2a;
      --max: 1280px;
      --pad: 40px;
    }

    body { font-family: 'Open Sans', sans-serif; color: var(--text-dark); background: #fff; }

    /* ── CONTAINER ──
       Sections are full-width (backgrounds bleed edge to edge).
       .container caps inner content at 1280px and centers it. */
    .container {
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      padding-left: var(--pad);
      padding-right: var(--pad);
    }

    /* ── NAV ── */
    .nav-section { background: var(--off-white); }
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 92px;
    }
    .nav-logo img { height: 60px; object-fit: contain; }
    .nav-links { display: flex; gap: 32px; align-items: center; }
    .nav-links a { font-size: 16px; color: #000; text-decoration: none; }
    .nav-links a.bold { font-weight: 700; }
    .nav-cta {
      background: var(--green-dark);
      color: var(--cream);
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 20px;
      height: 52px;
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      text-decoration: none;
    }
    .nav-cta img { width: 16px; height: 16px; }

    /* ── HERO ── */
    .hero {
      position: relative;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: var(--green-dark);
    }
    .hero-bg img.bg-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.55;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #03332e 0%, rgba(3,51,46,0.8) 34%, rgba(3,51,46,0.32) 60%, rgba(3,51,46,0) 100%);
    }
    .hero .container {
      position: relative;
      z-index: 2;
      min-height: 660px;
      display: flex;
      align-items: center;
    }
    .hero-content {
      max-width: 560px;
      padding: 40px 0;
    }
    .hero-content h1 {
      font-size: 38px;
      font-weight: 700;
      line-height: 1.18;
      color: var(--off-white);
      text-transform: capitalize;
      margin-bottom: 20px;
    }
    .hero-content p.sub {
      font-size: 18px;
      line-height: 1.55;
      color: var(--off-white);
      margin-bottom: 32px;
      max-width: 490px;
    }
    .hero-ctas { display: flex; align-items: center; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--off-white);
      color: var(--green-dark);
      font-size: 16px;
      font-weight: 800;
      text-transform: uppercase;
      padding: 0 28px;
      height: 53px;
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .btn-call { display: flex; flex-direction: column; align-items: flex-start; }
    .btn-call .label { font-size: 13px; color: var(--off-white); text-transform: capitalize; }
    .btn-call .num {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 24px;
      font-weight: 700;
      color: var(--off-white);
      text-transform: uppercase;
    }
    .btn-call .num img { width: 28px; }

    .hero-trust { display: flex; flex-direction: column; gap: 10px; }
    .hero-stars { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .hero-stars .stars { display: flex; }
    .hero-stars .stars img { width:auto;height:auto; }
    .hero-stars .rating { font-size: 16px; font-weight: 600; color: var(--cream); }
    .hero-stars .dot { font-size: 14px; color: var(--off-white); }
    .hero-stars .tagline { font-size: 16px; color: var(--off-white); }
    .hero-info { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .hero-info span { font-size: 15px; color: var(--off-white); text-transform: capitalize; letter-spacing: 0.3px; }
    .hero-funds { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
    .fund-badge {
      background: var(--green-light);
      border: 1px solid var(--green-border);
      border-radius: 99px;
      padding: 3px 12px;
      font-size: 12px;
      color: var(--off-white);
    }

    /* ── SECTION SHARED ── */
    .section { padding: 72px 0; }
    .section-title {
      font-size: 36px;
      font-weight: 700;
      line-height: 1.25;
      color: var(--text-dark);
      text-transform: capitalize;
      text-align: center;
      margin-bottom: 12px;
    }
    .section-sub {
      font-size: 18px;
      line-height: 1.55;
      color: var(--text-dark);
      text-align: center;
      max-width: 880px;
      margin: 0 auto 40px;
    }
    .section-cta-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      margin-top: 48px;
      flex-wrap: wrap;
    }
    .btn-dark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--green-dark);
      color: var(--off-white);
      font-size: 16px;
      font-weight: 800;
      text-transform: uppercase;
      padding: 0 28px;
      height: 55px;
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .call-aside { display: flex; flex-direction: column; align-items: flex-start; }
    .call-aside .label { font-size: 14px; text-transform: capitalize; }
    .call-aside .num {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 26px;
      font-weight: 700;
      text-transform: uppercase;
    }
    .call-aside .num img { width: 28px; }

    /* ── CONDITIONS ── */
    .conditions { background: var(--off-white); }
    .conditions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 16px;
    }
    .condition-card { background: var(--white); }
    .condition-card img { width: 100%; height: 300px; object-fit: cover; display: block; }
    .condition-card .card-body { padding: 24px 20px; }
    .condition-card h3 {
      font-size: 22px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 10px;
      text-transform: capitalize;
    }
    .condition-card p {
      font-size: 16px;
      line-height: 1.3;
      text-align: center;
      color: var(--text-dark);
    }

    /* ── TESTIMONIALS ── */
    .testimonials { background: var(--white); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 32px;
      margin-bottom: 32px;
    }
    .testimonial-card {
      background: var(--white);
      box-shadow: -12px 12px 40px rgba(26,46,42,0.09);
      padding: 32px 28px 28px;
    }
    .testimonial-stars { display: flex; margin-bottom: 16px; }
    .testimonial-stars img { width: auto; height: auto; }
    .testimonial-card blockquote {
      font-size: 17px;
      font-style: italic;
      line-height: 1.55;
      color: var(--text-dark);
      margin-bottom: 20px;
    }
    .testimonial-author { display: flex; align-items: center; gap: 14px; }
    .testimonial-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
    .testimonial-author .name { font-size: 18px; font-weight: 700; text-transform: capitalize; }
    .testimonial-author .type { font-size: 15px; }

    /* ── STEPS ── */
    .steps-section {
      position: relative;
      background: var(--green-dark);
      padding: 64px 0;
      overflow: hidden;
    }
    .steps-section .steps-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.07;
    }
    .steps-section .container { position: relative; z-index: 2; }
    .steps-section .section-title,
    .steps-section .section-sub { color: var(--cream); }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .step { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .step-icon { margin-bottom: 24px; }
    .step-icon img { width: 72px; height: 72px; }
    .step-num {
      width: 64px;
      height: 64px;
      background: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Poppins', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: 0.03em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .step h3 { font-size: 22px; font-weight: 700; color: var(--cream); margin-bottom: 10px; text-transform: capitalize; }
    .step p { font-size: 17px; color: var(--cream); line-height: 1.55; max-width: 280px; }
    .steps-cta-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      margin-top: 48px;
      flex-wrap: wrap;
    }
    .btn-cream {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--cream);
      color: var(--text-dark);
      font-size: 16px;
      font-weight: 800;
      text-transform: uppercase;
      padding: 0 28px;
      height: 55px;
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .call-aside-light .label { color: var(--cream); }
    .call-aside-light .num { color: var(--cream); }

    /* ── WHY US ── */
    .why-us { background: var(--off-white); padding: 72px 0; }
    .why-us-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .why-us-img { position: relative; }
    .why-us-img img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      display: block;
      border: 10px solid white;
    }
    .why-us-copy h2 { font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; text-transform: capitalize; }
    .why-us-copy .intro { font-size: 17px; line-height: 1.65; margin-bottom: 32px; }
    .why-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
    .why-item { display: flex; gap: 12px; align-items: flex-start; }
    .why-item img { width: 22px; margin-top: 2px; flex-shrink: 0; }
    .why-item p { font-size: 17px; line-height: 1.5; }
    .why-highlight {
      background: var(--white);
      padding: 20px 28px;
      font-size: 17px;
      line-height: 1.65;
    }

    /* ── TEAM ── */
    .team { background: var(--white); padding: 72px 0; }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 40px;
    }
    .team-card {
      background: var(--white);
      box-shadow: -10px 10px 32px rgba(26,46,42,0.09);
    }
    .team-card img { width: 100%; height: 280px; object-fit: cover; display: block; }
    .team-card .tc-body { padding: 20px; text-align: center; }
    .team-card .tc-name { font-size: 20px; font-weight: 700; margin-bottom: 4px; text-transform: capitalize; }
    .team-card .tc-title { font-size: 16px; margin-bottom: 4px; }
    .team-card .tc-clinic { font-size: 14px; color: #555; }

    /* ── FAQ ── */
    .faq { background: var(--off-white); padding: 72px 0; }
    .faq-list { max-width: 820px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 20px; }
    .faq-item { background: var(--white); }
    .faq-btn {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 28px;
      cursor: pointer;
      background: none;
      border: none;
      text-align: left;
    }
    .faq-btn span { font-size: 19px; font-weight: 700; color: var(--text-dark); text-transform: capitalize; }
    .faq-icon { font-size: 22px; color: var(--text-dark); transition: transform 0.2s; line-height: 1; }
    .faq-answer { padding: 0 28px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.2s ease; font-size: 16px; line-height: 1.65; }
    .faq-item.open .faq-answer { max-height: 200px; padding: 0 28px 20px; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }

    /* ── LOCATIONS ── */
    .locations { background: var(--white); padding: 72px 0; }
    .locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
    .location-card { background: var(--off-white); }
    .location-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
    .location-body { padding: 28px; }
    .location-body h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; text-transform: capitalize; }
    .location-body .addr { font-size: 16px; margin-bottom: 4px; }
    .location-body .phone { font-size: 16px; margin-bottom: 12px; }
    .hours { font-size: 15px; line-height: 1.75; margin-bottom: 20px; }
    .loc-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-dark-sm {
      background: var(--green-dark);
      color: var(--off-white);
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      padding: 0 20px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .btn-ghost-sm {
      background: var(--white);
      color: var(--text-dark);
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      padding: 0 20px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      letter-spacing: 0.02em;
      border: 2px solid var(--text-dark);
    }

    /* ── CTA BANNER ── */
    .cta-banner {
      position: relative;
      background: var(--green-dark);
      padding: 150px 0;
      overflow: hidden;
    }
    .cta-banner .bg-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #03332e 0%, rgba(3,51,46,0.71) 42%, rgba(3,51,46,0) 56%, rgba(3,51,46,0) 100%);
    }
    .cta-banner img.bg-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.45;
    }
    .cta-banner .container { position: relative; z-index: 2; }
    .cta-content { max-width: 600px; }
    .cta-content h2 { font-size: 38px; font-weight: 700; color: var(--cream); line-height: 1.25; text-transform: capitalize; margin-bottom: 14px; }
    .cta-content p { font-size: 18px; color: var(--cream); line-height: 1.35; margin-bottom: 32px; }
    .cta-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

    /* ── FOOTER ── */
    footer { background: var(--off-white); padding: 40px 0 32px; }
    footer .container { text-align: center; }
    footer img { height: 80px; object-fit: contain; margin-bottom: 20px; }
    footer p { font-size: 16px; color: var(--text-dark); }

    /* ── SLIDER (Slick) ── */
    /* Slick only initialises on mobile via JS. On desktop the grids stay as-is. */
    .slick-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      list-style: none;
      padding: 0;
      margin: 28px 0 0;
    }
    .slick-dots li { width: 10px; height: 10px; }
    .slick-dots li button {
      width: 10px;
      height: 10px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: #c4d0ce;
      font-size: 0;
      cursor: pointer;
      transition: background 0.2s;
    }
    .slick-dots li.slick-active button { background: var(--green-dark); }
    /* Give each slide breathing room so the shadow isn't clipped */
    .conditions-grid.is-slider .slick-slide,
    .testimonials-grid.is-slider .slick-slide { padding: 0 6px; }
    .conditions-grid.is-slider .slick-list,
    .testimonials-grid.is-slider .slick-list { overflow: hidden; }


.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 999;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.12);
}
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  min-height: 56px;
}
.sticky-icon {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.sticky-call {
  background: #ffffff;
  color: #1a1a1a;
  border-top: 1px solid #e5e5e5;
}
.sticky-call .icon-call {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a1a'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}
.sticky-book {
  background: #0a7d5a; /* swap for your landing page's primary color */
  color: #ffffff;
}
.sticky-book .icon-book {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z'/%3E%3C/svg%3E");
}
/* Show only on phones */
@media (min-width: 768px) {
  .sticky-bar { display: none; }
}


    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      :root { --pad: 20px; }
      .nav-section nav { flex-wrap: wrap; height: auto; padding: 16px 0; gap: 12px; }
      .nav-links { display: none; }
      .hero-content h1 { font-size: 28px; }
      .section, .why-us, .team, .faq, .locations { padding: 60px 0; }
      .steps-section, .cta-banner { padding: 48px 0; }
      .conditions-grid, .testimonials-grid, .steps-grid, .team-grid, .locations-grid, .why-us-inner { grid-template-columns: 1fr; }
      .why-us-img img { height: 300px; }

      /* ── Mobile font sizes: +15% across the board ── */
      .hero-content h1 { font-size: 32px;line-height:1.2em; }          /* 28 → 32 */
      .hero-content p.sub { font-size: 21px;line-height:1.2em; }        /* 18 → 21 */
      .btn-primary, .btn-dark, .btn-cream,
      .btn-outline-dark { font-size: 18px; }          /* 16 → 18 */
      .btn-call .num, .call-aside .num { font-size: 30px; }  /* 26 → 30 */
      .btn-call .label, .call-aside .label { font-size: 16px; }
      .hero-stars .rating, .hero-stars .tagline { font-size: 18px; } /* 16 → 18 */
      .hero-info span { font-size: 17px; }            /* 15 → 17 */
      .fund-badge { font-size: 14px; }                /* 12 → 14 */

      .section-title, .why-us-copy h2, .cta-content h2 { font-size: 30px; } /* 36 → ~30 fits mobile */
      .section-sub { font-size: 21px; }               /* 18 → 21 */

      .condition-card h3, .step h3 { font-size: 25px; }  /* 22 → 25 */
      .condition-card p { font-size: 17px; }          /* 15 → 17 */

      .testimonial-card blockquote { font-size: 20px; } /* 17 → 20 */
      .testimonial-author .name { font-size: 21px; }  /* 18 → 21 */
      .testimonial-author .type { font-size: 17px; }  /* 15 → 17 */

      .step p { font-size: 20px; }                    /* 17 → 20 */

      .why-us-copy .intro, .why-item p, .why-highlight { font-size: 20px; } /* 17 → 20 */

      .team-card .tc-name { font-size: 23px; }        /* 20 → 23 */
      .team-card .tc-title { font-size: 18px; }       /* 16 → 18 */
      .team-card .tc-clinic { font-size: 16px; }      /* 14 → 16 */

      .faq-btn span { font-size: 22px; }              /* 19 → 22 */
      .faq-icon { font-size: 25px; }                  /* 22 → 25 */
      .faq-answer { font-size: 18px; }                /* 16 → 18 */

      .location-body h3 { font-size: 28px; }          /* 24 → 28 */
      .location-body .addr, .location-body .phone { font-size: 18px; } /* 16 → 18 */
      .hours { font-size: 17px; }                     /* 15 → 17 */
      .btn-dark-sm, .btn-ghost-sm { font-size: 16px; } /* 14 → 16 */

      .cta-content p { font-size: 25px; }             /* 22 → 25 */

      footer p { font-size: 18px; }                   /* 16 → 18 */
    }