    /* ===== RESET & BASE ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: "Inter", sans-serif;
      background-color: #ffffff;
      color: #1e2b3c;
      line-height: 1.5;
    }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 16px;
    }
    @media (min-width: 480px) {
      .container { padding: 0 20px; }
    }
    @media (min-width: 768px) {
      .container { padding: 0 24px; }
    }
    @media (min-width: 1024px) {
      .container { padding: 0 32px; }
    }
    h1,h2,h3,h4 {
      font-weight: 700;
      line-height: 1.2;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }
    ul, ol { list-style: none; padding: 0; margin: 0; }
    /* ===== COLOR THEME: White (#fff), Blue (#1976D2, #0a4d8c), Yellow (#F6C445), Gold (#D4AF37) ===== */
    .text-blue { color: #1976D2; }
    .text-gold { color: #D4AF37; }
    .bg-blue { background-color: #1976D2; }
    .bg-light-blue { background-color: #E9F2FA; }
    .bg-gold { background-color: #D4AF37; }
    .bg-yellow-light { background-color: #FEF9E7; }
    .border-gold { border-color: #D4AF37; }

    /* ===== TOP BAR ===== */
    .topbar {
      background: #0a2b44; /* deep blue base */
      color: rgba(255,255,255,0.9);
      padding: 10px 0;
      border-bottom: 2px solid #D4AF37;
    }
    .topbar__inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .topbar__left a, .topbar__right span {
      color: white;
      text-decoration: none;
      margin-right: 16px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
    }
    @media (min-width: 480px) {
      .topbar__left a, .topbar__right span { font-size: 0.95rem; margin-right: 24px; }
    }
    .topbar__left a:hover { color: #F6C445; }
    .topbar__right span i { color: #F6C445; }

    /* ===== HEADER ===== */
    .header {
      background: white;
      box-shadow: 0 8px 20px rgba(0,40,70,0.06);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 2px solid #F6C44530;
    }
    .header__inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      gap: 16px;
    }
    @media (min-width: 768px) {
      .header__inner { padding: 16px 24px; }
    }
    .nav-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      padding: 10px;
      border-radius: 8px;
      background: #E9F2FA;
      border: 1px solid #D4AF37;
      color: #0a2b44;
      cursor: pointer;
      font-size: 1.35rem;
      flex-shrink: 0;
    }
    .nav-toggle:hover { background: #d0e4f7; }
    @media (min-width: 1001px) {
      .nav-toggle { display: none; }
    }
    .nav {
      position: fixed;
      top: 0;
      right: 0;
      width: min(300px, 85vw);
      max-width: 300px;
      height: 100vh;
      background: white;
      box-shadow: -8px 0 24px rgba(0,0,0,0.12);
      z-index: 101;
      padding: 72px 20px 24px;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      overflow-y: auto;
    }
    .nav.nav--open { transform: translateX(0); }
    .nav__list {
      display: flex;
      list-style: none;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }
    @media (max-width: 1000px) {
      .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
      }
      .nav__list li a { display: block; padding: 12px 16px; border-radius: 8px; }
      .nav__list a:not(.btn):hover { background: #E9F2FA; }
    }
    .nav.nav--open .nav-close { display: flex !important; align-items: center; justify-content: center; }
    @media (min-width: 1001px) {
      .nav-close { display: none !important; }
      /* Desktop: show nav inline in header */
      .nav {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        padding: 0;
        box-shadow: none;
        transform: none;
        overflow: visible;
        background: transparent;
      }
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      font-size: 1.25rem;
      font-weight: 600;
      color: #0a2b44;
      padding: 6px 10px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    @media (min-width: 768px) {
      .logo { font-size: 1.5rem; padding: 8px 14px; }
    }
    .logo__img {
      height: 42px;
      width: auto;
      display: block;
      object-fit: contain;
    }
    @media (min-width: 768px) {
      .logo__img { height: 50px; }
    }
    .logo__icon {
      color: #1976D2;
      font-size: 2.2rem;
    }
    .logo__text strong {
      font-weight: 800;
      color: #D4AF37;
    }
    .footer__logo { background: #fff; color: #0a2b44; }
    .footer__logo .logo__text strong { color: #D4AF37; }
    .nav__list {
      display: flex;
      list-style: none;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }
    .nav__list a:not(.btn) {
      text-decoration: none;
      color: #1f3a5e;
      font-weight: 500;
      font-size: 0.98rem;
      transition: 0.2s;
    }
    .nav__list a:not(.btn):hover { color: #D4AF37; }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px;
      border-radius: 60px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.2s;
      border: none;
      cursor: pointer;
      font-size: 0.95rem;
    }
    .btn--primary {
      background: #1976D2;
      color: white;
      box-shadow: 0 8px 14px -6px #1976D260;
    }
    .btn--primary:hover { background: #0f5cad; transform: translateY(-2px); }
    .btn--gold {
      background: #D4AF37;
      color: #0a2b44;
    }
    .btn--gold:hover { background: #c4a032; }
    .btn--outline-white {
      background: transparent;
      border: 2px solid white;
      color: white;
    }
    .btn--outline-white:hover { background: rgba(255,255,255,0.1); }
    .btn--sm { padding: 6px 18px; }
    .btn--block { width: 100%; justify-content: center; }

    /* ===== HERO ===== */
    .hero {
      background: linear-gradient(135deg, #ffffff 0%, #E9F2FA 100%);
      padding: 24px 0 20px;
      position: relative;
    }
    @media (min-width: 768px) {
      .hero { padding: 40px 0 20px; }
    }
    .hero__inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      align-items: center;
      text-align: center;
    }
    @media (min-width: 1000px) {
      .hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        text-align: left;
      }
    }
    .hero__content { order: 1; }
    .hero__visual { order: 2; }
    @media (min-width: 1000px) {
      .hero__content { order: 0; }
      .hero__visual { order: 0; }
    }
    .hero__label {
      background: rgba(25,118,210,0.1);
      color: #1976D2;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      border-radius: 40px;
      font-weight: 600;
      margin-bottom: 24px;
      border-left: 4px solid #D4AF37;
    }
    .hero__title {
      font-size: clamp(1.75rem, 5vw, 3.6rem);
      color: #0a2b44;
      margin-bottom: 16px;
      line-height: 1.2;
    }
    @media (min-width: 768px) {
      .hero__title { margin-bottom: 24px; }
    }
    .hero__title .highlight {
      color: #D4AF37;
      background: linear-gradient(145deg, #D4AF37, #F6C445);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero__title .typewriter-cursor {
      -webkit-text-fill-color: initial;
      color: #D4AF37;
      font-weight: 300;
      animation: typewriter-blink 0.7s step-end infinite;
    }
    @keyframes typewriter-blink {
      50% { opacity: 0; }
    }
    .hero__lead {
      font-size: clamp(0.9375rem, 2vw, 1.2rem);
      color: #2b4a6f;
      margin-bottom: 24px;
      max-width: 550px;
      margin-left: auto;
      margin-right: auto;
    }
    @media (min-width: 1000px) {
      .hero__lead { margin-left: 0; margin-right: 0; margin-bottom: 32px; }
    }
    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
    }
    @media (min-width: 1000px) {
      .hero__actions { justify-content: flex-start; }
    }
    .hero__image-wrap {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 40px -20px #0a2b4460;
      border: 3px solid white;
      outline: 2px solid #F6C44560;
      max-width: 100%;
    }
    @media (min-width: 768px) {
      .hero__image-wrap {
        border-radius: 40px 40px 40px 120px;
        border-width: 4px;
      }
    }
    .hero__card {
      background: white;
      padding: 16px 20px;
      border-radius: 48px 16px 48px 16px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 20px 30px -10px #0a2b4430;
      margin-top: 20px;
      border: 1px solid #D4AF37;
      flex-wrap: wrap;
      justify-content: center;
    }
    @media (min-width: 768px) {
      .hero__card { padding: 20px 28px; gap: 16px; margin-top: 24px; border-radius: 80px 20px 80px 20px; }
    }
    .hero__card-icon {
      font-size: 2.8rem;
      color: #1976D2;
    }
    .hero__marquee {
      background: #0a2b44;
      color: white;
      padding: 12px 0;
      margin-top: 32px;
      border-top: 2px solid #D4AF37;
      border-bottom: 2px solid #F6C445;
      overflow: hidden;
      white-space: nowrap;
    }
    @media (min-width: 768px) {
      .hero__marquee { padding: 14px 0; margin-top: 60px; }
    }
    .marquee__track {
      display: inline-block;
      animation: scroll 32s linear infinite;
      font-weight: 500;
    }
    .marquee__track span { margin-right: 40px; }
    .marquee__track i { color: #F6C445; margin-right: 6px; }
    @keyframes scroll { 0% {transform: translateX(0);} 100% {transform: translateX(-50%);} }

    /* section style */
    .section-label {
      display: inline-block;
      background: #F6C44520;
      color: #1976D2;
      font-weight: 700;
      padding: 6px 18px;
      border-radius: 30px;
      font-size: 0.9rem;
      margin-bottom: 16px;
      border-left: 4px solid #D4AF37;
    }
    .section-title {
      font-size: clamp(1.5rem, 4vw, 2.4rem);
      color: #0a2b44;
      margin-bottom: 16px;
    }
    .section-title--center { text-align: center; }
    .section-intro {
      text-align: center;
      color: #2b4a6f;
      max-width: 750px;
      margin: 0 auto 48px;
      font-size: 1.2rem;
    }
    .section-intro a { color: #1976D2; font-weight: 600; text-decoration: none; }
    .section-intro a:hover { text-decoration: underline; }

    /* about */
    .about__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      margin: 32px 0;
      align-items: stretch;
    }
    @media (min-width: 1000px) {
      .about__grid {
        grid-template-columns: 1.6fr 1fr;
        gap: 48px;
        margin: 60px 0;
      }
    }
    .about__content-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      background: white;
      padding: 20px;
      border-radius: 24px;
      box-shadow: 0 20px 40px -12px #1976D230;
      border: 1px solid #F6C445;
    }
    @media (min-width: 768px) {
      .about__content-inner {
        grid-template-columns: 1fr 1.3fr;
        gap: 30px;
        padding: 30px;
        border-radius: 48px;
        align-items: center;
      }
    }
    .about__image-wrap img {
      border-radius: 20px;
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    @media (min-width: 768px) {
      .about__image-wrap img { border-radius: 30px; height: 280px; }
    }
    .about__list {
      list-style: none;
      margin: 24px 0;
    }
    .about__list li {
      margin-bottom: 12px;
      display: flex;
      gap: 10px;
      align-items: center;
    }
    .about__list i { color: #D4AF37; font-size: 1.2rem; }
    .about__doctor {
      display: flex;
      flex-direction: column;
      min-height: 0;
    }
    .doctor-card {
      background: white;
      border-radius: 24px;
      padding: 24px 20px;
      text-align: center;
      border: 2px solid #F6C445;
      box-shadow: 0 25px 40px -16px #0a2b44;
      display: flex;
      flex-direction: column;
      flex: 1;
      min-height: 0;
    }
    @media (min-width: 768px) {
      .doctor-card { border-radius: 40px; padding: 30px 24px; }
    }
    .doctor-card__image {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin: 0 auto 16px;
      border: 4px solid #D4AF37;
      overflow: hidden;
    }
    @media (min-width: 768px) {
      .doctor-card__image { width: 150px; height: 150px; }
    }
    .doctor-card__image img { width:100%; height:100%; object-fit:cover; }
    .doctor-card__name { font-size: 1.4rem; color: #0a2b44; margin-bottom: 4px; }
    @media (min-width: 768px) {
      .doctor-card__name { font-size: 1.8rem; }
    }
    .doctor-card__qual { color:#1976D2; font-weight:600; margin-bottom: 12px; font-size: 0.95rem; }
    .doctor-card__bio {
      color: #2b4a6f;
      line-height: 1.5;
      margin-bottom: 20px;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .doctor-card__social {
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid #E9F2FA;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 12px;
    }
    .doctor-card__social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #E9F2FA;
      color: #0a2b44;
      text-decoration: none;
      transition: transform 0.2s, background 0.2s, color 0.2s;
    }
    .doctor-card__social a:hover { transform: scale(1.1); background: #D4AF37; color: white; }
    .doctor-card__social a i { font-size: 1.1rem; }
    .doctor-card__social a.doctor-card__social--fb { color: #1976D2; }
    .doctor-card__social a.doctor-card__social--fb:hover { background: #1976D2; color: white; }
    .doctor-card__social a.doctor-card__social--ig { color: #D4AF37; }
    .doctor-card__social a.doctor-card__social--ig:hover { background: linear-gradient(145deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
    .doctor-card__social a.doctor-card__social--wa { color: #25D366; }
    .doctor-card__social a.doctor-card__social--wa:hover { background: #25D366; color: white; }
    .doctor-card__social a.doctor-card__social--tw { color: #1DA1F2; }
    .doctor-card__social a.doctor-card__social--tw:hover { background: #1DA1F2; color: white; }
    .doctor-card__social a.doctor-card__social--yt { color: #FF0000; }
    .doctor-card__social a.doctor-card__social--yt:hover { background: #FF0000; color: white; }
    .specialties {
      background: #E9F2FA;
      padding: 40px 0;
    }
    @media (min-width: 768px) {
      .specialties { padding: 80px 0; }
    }
    .specialties__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    @media (min-width: 600px) {
      .specialties__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
      }
    }
    @media (min-width: 900px) {
      .specialties__grid { gap: 30px; }
    }
    .specialty-card {
      background: white;
      padding: 20px 16px;
      border-radius: 20px;
      text-align: center;
      border-bottom: 5px solid #D4AF37;
      box-shadow: 0 12px 24px -12px #1976D240;
    }
    @media (min-width: 768px) {
      .specialty-card { padding: 30px 20px; border-radius: 32px; }
    }
    .specialty-card__icon {
      background: #E9F2FA;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
      font-size: 1.5rem;
      color: #1976D2;
      border: 2px solid #F6C445;
    }
    @media (min-width: 768px) {
      .specialty-card__icon { width: 70px; height: 70px; font-size: 2rem; margin-bottom: 20px; }
    }

    /* treatments */
    .treatments {
      padding-top: 40px;
      padding-bottom: 20px;
    }
    @media (min-width: 768px) {
      .treatments { padding-top: 56px; padding-bottom: 32px; }
    }
    .treatments__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin: 24px 0;
    }
    @media (min-width: 768px) {
      .treatments__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin: 40px 0;
      }
    }
    .treatment-block {
      background: white;
      padding: 24px 20px;
      border-radius: 24px;
      border-left: 8px solid #D4AF37;
      box-shadow: 0 20px 30px -12px #b0c9e0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }
    @media (min-width: 768px) {
      .treatment-block { padding: 40px 35px; border-radius: 40px; gap: 18px; }
    }
    .treatment-block__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      font-size: 1.65rem;
      color: #1976D2;
      flex-shrink: 0;
    }
    .treatment-block__icon.treatment-block__icon--gold { color: #D4AF37; }
    @media (min-width: 768px) {
      .treatment-block__icon { width: 60px; height: 60px; font-size: 1.9rem; }
    }

    /* symptoms */
    .symptoms__list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      background: white;
      padding: 24px 20px;
      border-radius: 24px;
      border: 2px solid #F6C445;
      margin: 24px 0;
      list-style: none;
    }
    @media (min-width: 600px) {
      .symptoms__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 40px;
        border-radius: 60px;
        margin: 40px 0;
      }
    }
    .symptoms__list li {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .symptoms__list li i { color: #D4AF37; margin-right: 8px; flex-shrink: 0; }

    /* why choose */
    .why-choose {
      background: #0a2b44;
      color: white;
      padding: 40px 0;
    }
    @media (min-width: 768px) {
      .why-choose { padding: 80px 0; }
    }
    .why-choose .section-label { background: #F6C445; color: #0a2b44; }
    .why-choose .section-title { color: white; }
    .why-choose__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    @media (min-width: 600px) {
      .why-choose__grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 24px;
      }
    }
    .why-choose__item {
      background: rgba(255,255,255,0.06);
      padding: 16px 10px;
      border-radius: 24px;
      text-align: center;
      border: 1px solid #D4AF37;
      backdrop-filter: blur(2px);
      font-size: 0.875rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    @media (min-width: 768px) {
      .why-choose__item { padding: 24px 12px; border-radius: 40px; font-size: 1rem; gap: 12px; }
    }
    .why-choose__item i {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      font-size: 1.4rem;
      color: #F6C445;
      flex-shrink: 0;
    }
    @media (min-width: 768px) {
      .why-choose__item i { width: 52px; height: 52px; font-size: 1.65rem; }
    }

    /* book */
    .book__wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      background: white;
      border-radius: 24px;
      padding: 24px 20px;
      margin: 24px 0;
      box-shadow: 0 20px 40px -8px #0a2b4430;
      border: 2px solid #F6C445;
    }
    @media (min-width: 768px) {
      .book__wrapper {
        grid-template-columns: 1fr 1.2fr;
        gap: 48px;
        padding: 48px;
        margin: 40px 0;
        border-radius: 60px;
      }
    }
    .book__contact a {
      display: inline-block;
      background: #E9F2FA;
      padding: 12px 20px;
      border-radius: 60px;
      text-decoration: none;
      color: #0a2b44;
      font-weight: 600;
      margin: 8px 12px 0 0;
      border: 1px solid #D4AF37;
      font-size: 0.9rem;
    }
    @media (min-width: 768px) {
      .book__contact a { padding: 14px 28px; margin: 16px 16px 0 0; }
    }
    .book__contact a:hover { background: #D4AF37; color: white; border-color: #D4AF37; }
    .book__details {
      margin: 20px 0;
      padding: 0;
      list-style: none;
    }
    .book__details li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
      color: #2b4a6f;
      font-size: 0.9375rem;
      line-height: 1.45;
    }
    .book__details li i {
      color: #D4AF37;
      font-size: 1.1rem;
      margin-top: 2px;
      flex-shrink: 0;
    }
    .book__details li strong { color: #0a2b44; }
    .book__details a { color: #1976D2; text-decoration: none; }
    .book__details a:hover { text-decoration: underline; }
    .book__extra {
      margin: 20px 0;
      padding: 16px 0;
      border-top: 1px solid #E9F2FA;
    }
    .book__extra-title {
      font-size: 1rem;
      color: #0a2b44;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .book__extra-list {
      margin: 0 0 12px 0;
      padding-left: 20px;
      color: #2b4a6f;
      font-size: 0.9rem;
      line-height: 1.6;
    }
    .book__extra-list li { margin-bottom: 4px; }
    .book__extra-note {
      font-size: 0.875rem;
      color: #2b4a6f;
      line-height: 1.5;
      margin: 0;
      font-style: italic;
    }
    .book__form {
      background: #FEF9E7;
      padding: 24px 20px;
      border-radius: 24px;
      border: 1px solid #D4AF37;
    }
    @media (min-width: 768px) {
      .book__form { padding: 40px; border-radius: 48px; }
    }
    .form-row { margin-bottom: 16px; }
    @media (min-width: 768px) {
      .form-row { margin-bottom: 20px; }
    }
    .form-row label { font-weight: 600; display: block; margin-bottom: 6px; color:#0a2b44; }
    .form-row input, .form-row textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid #c0d0e2;
      border-radius: 24px;
      font-family: inherit;
      font-size: 1rem;
    }
    @media (min-width: 768px) {
      .form-row input, .form-row textarea { padding: 14px 20px; border-radius: 40px; }
    }
    .form-row input:focus, .form-row textarea:focus {
      border-color: #D4AF37;
      outline: none;
      box-shadow: 0 0 0 3px #F6C44580;
    }

    /* map + contact grid */
    .map-contact-section {
      width: 100%;
      padding: 0 16px;
      box-sizing: border-box;
    }
    @media (min-width: 480px) {
      .map-contact-section { padding: 0 20px; }
    }
    @media (min-width: 768px) {
      .map-contact-section { padding: 0 24px; }
    }
    @media (min-width: 1024px) {
      .map-contact-section { padding: 0 32px; }
    }
    .map-contact {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      background: #E9F2FA;
      border-radius: 24px;
      padding: 24px 20px;
      margin: 32px auto;
      border: 2px solid white;
      outline: 2px solid #D4AF37;
      width: 100%;
      max-width: 1280px;
      box-sizing: border-box;
    }
    @media (min-width: 768px) {
      .map-contact {
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
        padding: 40px;
        margin: 60px 0;
        border-radius: 60px;
      }
    }
    .map-frame {
      border-radius: 20px;
      overflow: hidden;
      height: 220px;
      border: 3px solid white;
    }
    @media (min-width: 768px) {
      .map-frame { border-radius: 40px; height: 300px; border-width: 4px; }
    }
    .map-frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }
    .clinic-details {
      background: white;
      border-radius: 24px;
      padding: 20px;
      border: 2px solid #F6C445;
      text-align: center;
    }
    @media (min-width: 768px) {
      .clinic-details { border-radius: 40px; padding: 30px; }
    }
    .clinic-details h3 {
      margin-bottom: 1rem;
      font-size: 1.25rem;
      color: #0a2b44;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .clinic-details p {
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .clinic-details p:last-child { margin-bottom: 0; }
    .clinic-details a { color: #1976D2; text-decoration: none; }
    .clinic-details a:hover { text-decoration: underline; }
    .clinic-details i {
      color: #D4AF37;
      width: 24px;
      text-align: center;
      flex-shrink: 0;
    }

    /* testimonials */
    .testimonials__slider {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
      margin: 28px 0;
    }
    @media (min-width: 768px) {
      .testimonials__slider { gap: 32px; margin: 48px 0; }
    }
    .testimonial-card {
      background: white;
      border-radius: 24px;
      padding: 28px 22px;
      max-width: 100%;
      width: 100%;
      border: 2px solid #F6C445;
      box-shadow: 0 16px 40px -16px #0a2b4430;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 48px -12px #0a2b4440;
    }
    @media (min-width: 480px) {
      .testimonial-card { max-width: 320px; width: auto; }
    }
    @media (min-width: 768px) {
      .testimonial-card { padding: 32px 28px; border-radius: 40px; max-width: 340px; }
    }
    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 12px;
      left: 18px;
      font-size: 3rem;
      font-family: Georgia, serif;
      color: #F6C44540;
      line-height: 1;
    }
    .testimonial-card__avatar {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid #D4AF37;
      margin-bottom: 12px;
      flex-shrink: 0;
    }
    .testimonial-card__avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .testimonial-card__stars {
      margin-bottom: 14px;
      font-size: 0.9rem;
      letter-spacing: 2px;
    }
    .testimonial-card__stars i { color: #D4AF37; }
    .testimonial-card p {
      margin: 0 0 16px 0;
      font-size: 0.95rem;
      line-height: 1.6;
      color: #2b4a6f;
    }
    .testimonial-card__meta {
      margin-top: auto;
      font-size: 0.8rem;
      color: #1976D2;
      font-weight: 600;
    }

    /* FAQ */
    .faq__list { margin: 24px 0; }
    .faq__item {
      background: #FEF9E7;
      margin-bottom: 12px;
      border-radius: 24px;
      border-left: 6px solid #D4AF37;
      overflow: hidden;
    }
    @media (min-width: 768px) {
      .faq__item { margin-bottom: 16px; border-radius: 32px; }
    }
    .faq__question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 20px;
      border: none;
      background: none;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 700;
      color: #0a2b44;
      text-align: left;
      cursor: pointer;
      transition: background 0.2s;
    }
    .faq__question:hover { background: #F6C44530; }
    @media (min-width: 768px) {
      .faq__question { padding: 24px 32px; font-size: 1.05rem; }
    }
    .faq__question h4 { margin: 0; font-size: inherit; font-weight: 700; }
    .faq__icon {
      flex-shrink: 0;
      color: #D4AF37;
      font-size: 0.9rem;
      transition: transform 0.25s ease;
    }
    .faq__item.is-open .faq__icon { transform: rotate(180deg); }
    .faq__answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .faq__item.is-open .faq__answer { max-height: 500px; }
    .faq__answer-inner {
      padding: 0 20px 18px 20px;
    }
    @media (min-width: 768px) {
      .faq__answer-inner { padding: 0 32px 24px 32px; }
    }
    .faq__answer p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.6;
      color: #2b4a6f;
    }

    /* footer */
    .footer {
      background: #0a2b44;
      color: #b8d4eb;
      padding: 0;
      border-top: 4px solid #D4AF37;
      position: relative;
      overflow: hidden;
    }
    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(212,175,55,0.08) 0%, transparent 50%),
                  linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.15) 100%);
      pointer-events: none;
    }
    .footer .container { position: relative; z-index: 1; }
    .footer__top {
      padding: 56px 0 40px;
    }
    @media (min-width: 768px) {
      .footer__top { padding: 72px 0 56px; }
    }
    .footer__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 36px 24px;
    }
    @media (min-width: 600px) {
      .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
    }
    @media (min-width: 1001px) {
      .footer__grid {
        grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
        gap: 48px 40px;
      }
    }
    .footer__brand .footer__logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: white;
      text-decoration: none;
      font-size: 1.5rem;
      margin-bottom: 16px;
    }
    .footer__brand .logo__icon { color: #D4AF37; }
    .footer__brand p {
      font-size: 0.9375rem;
      line-height: 1.6;
      color: #b8d4eb;
      max-width: 280px;
      margin-bottom: 20px;
    }
    .footer__tagline {
      font-size: 0.85rem;
      color: #7ba3c9;
      margin-top: 4px;
    }
    .footer__heading {
      font-size: 1rem;
      font-weight: 700;
      color: white;
      margin-bottom: 18px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .footer__list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer__list li { margin-bottom: 10px; }
    .footer__list a {
      color: #b8d4eb;
      text-decoration: none;
      font-size: 0.9375rem;
      transition: color 0.2s;
    }
    .footer__list a:hover { color: #D4AF37; }
    .footer__contact p,
    .footer__clinics p {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 0.9375rem;
      line-height: 1.5;
    }
    .footer__contact p:last-child,
    .footer__clinics p:last-child { margin-bottom: 0; }
    .footer__contact i,
    .footer__clinics i {
      color: #D4AF37;
      font-size: 1rem;
      margin-top: 2px;
      flex-shrink: 0;
    }
    .footer__contact a,
    .footer__clinics a {
      color: #F6C445;
      text-decoration: none;
    }
    .footer__contact a:hover,
    .footer__clinics a:hover { text-decoration: underline; }
    .footer__clinics strong { color: #e1eefb; }
    .footer__social {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }
    .footer__social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      color: #D4AF37;
      text-decoration: none;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .footer__social a:hover { background: #D4AF37; color: #0a2b44; transform: scale(1.08); }
    .footer__cta {
      background: rgba(212,175,55,0.12);
      border-top: 1px solid rgba(212,175,55,0.3);
      border-bottom: 1px solid rgba(0,0,0,0.2);
      padding: 24px 0;
      text-align: center;
    }
    .footer__cta p {
      margin: 0 0 16px 0;
      font-size: 1.1rem;
      color: #e1eefb;
      font-weight: 600;
    }
    .footer__cta .btn { background: #D4AF37; color: #0a2b44; border-color: #D4AF37; }
    .footer__cta .btn:hover { background: #F6C445; color: #0a2b44; }
    .footer__bottom {
      padding: 24px 0;
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .footer__bottom p {
      margin: 0;
      font-size: 0.875rem;
      color: #7ba3c9;
    }
    .footer__bottom a { color: #b8d4eb; }
    .footer__bottom a:hover { color: #D4AF37; }
    .footer__bottom p + p a { color: #7ba3c9; }
    .footer__bottom p + p a:hover { color: #D4AF37; }

    .float-btn {
      position: fixed;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 6px 16px rgba(0,0,0,0.25);
      z-index: 99;
      transition: transform 0.2s ease;
    }
    .float-btn:hover { transform: scale(1.1); }
    .float-btn--whatsapp {
      bottom: 88px;
      right: 16px;
      background: #25D366;
    }
    .float-btn--gmb {
      bottom: 20px;
      right: 16px;
      background: #D4AF37;
      color: #0a2b44;
    }
    @media (min-width: 480px) {
      .float-btn {
        width: 56px;
        height: 56px;
        font-size: 2rem;
        right: 20px;
      }
      .float-btn--whatsapp { bottom: 90px; right: 20px; }
      .float-btn--gmb { bottom: 20px; right: 20px; }
    }

    /* Page content wrapper for inner pages */
.page-content { padding: 60px 0 80px; }
@media (min-width: 768px) {
  .page-content { padding: 80px 0 100px; }
}

/* One-off tablet/desktop layout fixes */
    @media (max-width: 1000px) {
      .hero__inner, .about__grid, .book__wrapper, .map-contact, .footer__grid {
        grid-template-columns: 1fr;
      }
    }
    @media (min-width: 1001px) {
      .hero__inner { grid-template-columns: 1fr 1fr; }
      .about__grid { grid-template-columns: 1.6fr 1fr; }
      .book__wrapper { grid-template-columns: 1fr 1.2fr; }
      .map-contact { grid-template-columns: 1.2fr 1fr; }
      .footer__grid { grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr; }
    }

    /* ===== PAGE-SPECIFIC STYLES (same theme, different layouts) ===== */
    /* About page: Editorial split, soft gradient, asymmetric cards */
    .page-about .page-content { background: linear-gradient(180deg, #FEF9E7 0%, #fff 40%); }
    .page-about .about__content-inner {
      grid-template-columns: 1fr;
      border-radius: 16px;
      box-shadow: 0 12px 32px -8px #1976D220;
      border: none;
      border-top: 4px solid #D4AF37;
    }
    .page-about .about__image-wrap { order: -1; }
    @media (min-width: 768px) {
      .page-about .about__content-inner { grid-template-columns: 1fr 1.3fr; border-radius: 24px; }
      .page-about .about__image-wrap { order: 0; }
    }
    .page-about .about__image-wrap img { border-radius: 12px; }
    .page-about .doctor-card {
      border-radius: 16px;
      box-shadow: 0 16px 40px -12px #0a2b4430;
      border: 1px solid #E9F2FA;
      border-top: 4px solid #1976D2;
    }

    /* Specialties page: Bento grid, tile-style cards */
    .page-specialties .page-content { background: #0a2b44; color: white; padding: 60px 0 80px; }
    @media (min-width: 768px) { .page-specialties .page-content { padding: 80px 0 100px; } }
    .page-specialties .specialties { background: transparent; padding: 0; }
    .page-specialties .section-label { background: #D4AF37; color: #0a2b44; }
    .page-specialties .section-title { color: white; }
    .page-specialties .specialties__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    @media (min-width: 600px) {
      .page-specialties .specialties__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
    }
    .page-specialties .specialty-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(212,175,55,0.5);
      border-radius: 16px;
      border-bottom: none;
      box-shadow: none;
      color: white;
    }
    .page-specialties .specialty-card:hover { background: rgba(255,255,255,0.12); }
    .page-specialties .specialty-card h3 { color: white; }
    .page-specialties .specialty-card__icon {
      background: rgba(212,175,55,0.2);
      border-color: #D4AF37;
      color: #F6C445;
    }

    /* Treatments page: Horizontal timeline, stacked blocks */
    .page-treatments .page-content { background: #FEF9E7; }
    .page-treatments .treatments { padding: 0; }
    .page-treatments .treatments__grid {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    @media (min-width: 768px) {
      .page-treatments .treatments__grid { flex-direction: row; gap: 40px; }
    }
    .page-treatments .treatment-block {
      border-left: none;
      border-top: 6px solid #D4AF37;
      border-radius: 20px;
      box-shadow: 0 8px 24px -8px #1976D240;
      flex: 1;
    }

    /* When to Meet page: Checklist with alternating rows */
    .page-when-to-meet .page-content { background: linear-gradient(135deg, #E9F2FA 0%, #fff 100%); }
    .page-when-to-meet .symptoms__list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      border-radius: 20px;
      border: none;
      background: white;
      box-shadow: 0 12px 32px -12px #1976D230;
      padding: 32px 28px;
    }
    @media (min-width: 600px) {
      .page-when-to-meet .symptoms__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border-radius: 24px;
      }
    }
    .page-when-to-meet .symptoms__list li {
      padding: 12px 16px;
      background: #FEF9E7;
      border-radius: 12px;
      border-left: 4px solid #D4AF37;
    }

    /* Why Us page: Light background, pill-style items */
    .page-why-us .page-content { background: #fff; }
    .page-why-us .why-choose { background: linear-gradient(135deg, #1976D2 0%, #0a4d8c 100%); padding: 60px 0 80px; }
    @media (min-width: 768px) { .page-why-us .why-choose { padding: 80px 0 100px; } }
    .page-why-us .why-choose__grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .page-why-us .why-choose__item {
      flex: 1 1 140px;
      max-width: 200px;
      border-radius: 60px;
      padding: 20px 24px;
      border: 2px solid rgba(246,196,69,0.6);
    }

    /* Stories page: Magazine-style, horizontal cards */
    .page-stories .page-content { background: #E9F2FA; }
    .page-stories .testimonials { padding: 0; }
    .page-stories .testimonials__slider {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    @media (min-width: 480px) {
      .page-stories .testimonials__slider { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 900px) {
      .page-stories .testimonials__slider { grid-template-columns: repeat(3, 1fr); }
    }
    .page-stories .testimonial-card {
      max-width: none;
      border-radius: 20px;
      border: 2px solid #1976D2;
      box-shadow: 0 8px 24px -8px #0a2b4430;
    }
    .page-stories .testimonial-card::before { color: #1976D230; }

    /* FAQ page: Clean knowledge base, minimal borders */
    .page-faq .page-content { background: #fff; }
    .page-faq .faq__list { margin: 32px 0; }
    .page-faq .faq__item {
      background: white;
      border-radius: 12px;
      border-left: none;
      border: 1px solid #E9F2FA;
      box-shadow: 0 2px 12px -4px #1976D220;
    }
    .page-faq .faq__question:hover { background: #FEF9E7; }
    .page-faq .faq__item.is-open { border-color: #D4AF37; box-shadow: 0 4px 16px -4px #D4AF3740; }

    /* Contact page: Full-width map, card below */
    .page-contact .page-content { background: #FEF9E7; padding: 0; }
    .page-contact .map-contact-section { padding: 40px 16px 60px; }
    @media (min-width: 768px) { .page-contact .map-contact-section { padding: 60px 24px 80px; } }
    .page-contact .map-contact {
      flex-direction: column-reverse;
      background: white;
      border: none;
      outline: none;
      box-shadow: 0 16px 48px -16px #0a2b4430;
      border-radius: 24px;
    }
    @media (min-width: 768px) {
      .page-contact .map-contact { flex-direction: row; }
    }
    .page-contact .map-frame { border: 2px solid #E9F2FA; }
    .page-contact .clinic-details {
      border: none;
      border-bottom: 4px solid #D4AF37;
    }
    @media (min-width: 768px) {
      .page-contact .clinic-details { border-bottom: none; border-left: 4px solid #D4AF37; }
    }

    /* Book page: Form-first, split layout */
    .page-book .page-content { background: linear-gradient(180deg, #E9F2FA 0%, #fff 50%); }
    .page-book .book__wrapper {
      flex-direction: column;
      border-radius: 24px;
      border: 2px solid #1976D2;
      box-shadow: 0 20px 48px -12px #1976D240;
    }
    @media (min-width: 768px) {
      .page-book .book__wrapper { flex-direction: row; }
    }
    .page-book .book__form {
      background: white;
      border: 2px solid #D4AF37;
      box-shadow: 0 8px 24px -8px #D4AF3740;
    }

    /* ===== INNER PAGE EXTRA ELEMENTS ===== */
    .page-hero {
      background: linear-gradient(135deg, #0a2b44 0%, #1976D2 100%);
      color: white;
      padding: 40px 0 36px;
      text-align: center;
      border-bottom: 3px solid #D4AF37;
    }
    @media (min-width: 768px) { .page-hero { padding: 56px 0 48px; } }
    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      font-size: 0.875rem;
      margin-bottom: 16px;
      color: rgba(255,255,255,0.85);
    }
    .breadcrumb a { color: #F6C445; text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb span { color: rgba(255,255,255,0.6); }
    .page-hero h1 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin: 0 0 12px; }
    .page-hero p { margin: 0; font-size: 1rem; max-width: 600px; margin-left: auto; margin-right: auto; opacity: 0.95; }
    .stats-bar {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 32px 0;
    }
    @media (min-width: 600px) {
      .stats-bar { grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 40px 0; }
    }
    .stat-item {
      background: white;
      padding: 20px 16px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 8px 24px -8px #0a2b4430;
      border: 1px solid #E9F2FA;
    }
    .stat-item i { font-size: 2rem; color: #D4AF37; margin-bottom: 8px; display: block; }
    .stat-item strong { display: block; font-size: 1.5rem; color: #0a2b44; }
    .stat-item span { font-size: 0.875rem; color: #2b4a6f; }
    .stat-item a { color: #1976D2; text-decoration: none; }
    .stat-item a:hover { text-decoration: underline; }
    .cta-block {
      background: linear-gradient(135deg, #1976D2 0%, #0a4d8c 100%);
      color: white;
      padding: 40px 24px;
      border-radius: 24px;
      text-align: center;
      margin: 48px 0;
      border: 2px solid #D4AF37;
    }
    @media (min-width: 768px) { .cta-block { padding: 56px 48px; margin: 60px 0; } }
    .cta-block h3 { margin: 0 0 12px; font-size: 1.5rem; }
    .cta-block p { margin: 0 0 24px; opacity: 0.95; }
    .cta-block .btn { background: #D4AF37; color: #0a2b44; }
    .cta-block .btn:hover { background: #F6C445; }
    .info-card {
      background: white;
      padding: 24px 20px;
      border-radius: 20px;
      border-left: 6px solid #D4AF37;
      box-shadow: 0 8px 24px -8px #1976D230;
      margin-bottom: 20px;
    }
    .info-card h4 { margin: 0 0 10px; color: #0a2b44; font-size: 1.1rem; }
    .info-card p { margin: 0; font-size: 0.95rem; color: #2b4a6f; line-height: 1.6; }
    .specialty-card__desc { font-size: 0.875rem; color: #2b4a6f; margin-top: 8px; line-height: 1.5; }
    .page-specialties .specialty-card__desc { color: rgba(255,255,255,0.85); }

    /* SEO content blocks */
    .content-block {
      background: white;
      padding: 32px 24px;
      border-radius: 20px;
      margin-bottom: 28px;
      box-shadow: 0 8px 24px -8px #1976D230;
      border: 1px solid #E9F2FA;
    }
    @media (min-width: 768px) { .content-block { padding: 40px 36px; margin-bottom: 36px; } }
    .content-block h2 { font-size: 1.5rem; color: #0a2b44; margin: 0 0 16px; }
    .content-block h3 { font-size: 1.2rem; color: #1976D2; margin: 24px 0 10px; }
    .content-block h3:first-of-type { margin-top: 0; }
    .content-block p { margin: 0 0 14px; color: #2b4a6f; line-height: 1.7; line-height: 1.75; }
    .content-block p:last-child { margin-bottom: 0; }
    .content-block ul { margin: 12px 0; padding-left: 24px; color: #2b4a6f; line-height: 1.7; }
    .content-block ul li { margin-bottom: 8px; }
    .content-block a { color: #1976D2; font-weight: 600; text-decoration: none; }
    .content-block a:hover { text-decoration: underline; }
    .content-block--alt { background: #FEF9E7; border-color: #D4AF37; }
    .related-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
    .related-links a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: #E9F2FA; border-radius: 12px; color: #0a2b44; font-weight: 600; }
    .related-links a:hover { background: #D4AF37; color: white; }
