  
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --teal-dark: #244be1;
    --teal-mid: #5c7aec;
    --teal-light: #c0c8e8;
    --teal-pale: #dee0e8;
    --warm-white: #FDFAF6;
    --cream: #F7F3EC;
    --text-dark: #081031;
    --text-mid: #14204b;
    --text-muted: #6c6b82;
    --gold: #BA7517;
    --gold-light: #FAEEDA;
    --border: #c0c8e8;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--warm-white);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
  }

  /* ── PAGE SECTIONS ── */
  section { padding: 80px 5vw; }
  .section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-mid);
    background: var(--teal-light);
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 1.2rem;
  }
  h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
  h1 { font-size: clamp(2.2rem, 4.5vw, 2.8rem); color: var(--text-dark); }
  h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--text-dark); }
  h3 { font-size: 1.25rem; font-weight: 600; }
  p { color: var(--text-mid); }

  .btn-primary {
    display: inline-block;
    background: var(--teal-dark);
    color: #fff!important;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
  }
  .btn-primary:hover { background: var(--teal-mid); transform: translateY(-1px); }
  .btn-outline {
    display: inline-block;
    border: 1.5px solid var(--teal-dark);
    color: var(--teal-dark);
    padding: 0.75rem 1.8rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
  }
  .btn-outline:hover { background: var(--teal-dark); color: #fff; }

  /* ── PAGE TABS ── */
  .page-nav {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    display: flex;
    padding: 0 5vw;
    gap: 0;
    overflow-x: auto;
  }
  .page-tab {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2.5px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--font-body);
  }
  .page-tab.active { color: var(--teal-dark); border-bottom-color: var(--teal-dark); }
  .page-tab:hover:not(.active) { color: var(--text-mid); }

  .page { display: none; }
  .page.active { display: block; }

  /* ══════════════════════════════════════
     HOME PAGE
  ══════════════════════════════════════ */

  /* Hero */
  .hero {
    min-height: 70vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
  }
  .condition-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*min-height: 72vh;*/
    overflow: hidden;
  }
  .hero-content {
    padding: 50px 5vw 80px 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
	background-color: #fff;
  }
  
  .hero-BetterBreak {display:none;}
  
  .hero-since {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
  }
  .hero-since-line { width: 40px; height: 1px; background: var(--teal-mid); }
  .hero-since span { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-mid); font-weight: 500; }
  .hero h1 { margin-bottom: 1.5rem; }
  .hero h1 em { font-style: italic; color: var(--teal-dark); }
  .hero-sub { font-size: 1.05rem; color: var(--text-mid); max-width: 460px; margin-bottom: 2.5rem; line-height: 1.75; }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .hero-image {
    position: relative;
    overflow: hidden;
  }
  .hero-image img{
	height: 100%;
  }
  .hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--teal-pale);
    color: var(--teal-dark);
    font-size: 0.85rem;
    gap: 12px;
    text-align: center;
  }
  .hero-image-placeholder img {
	  height:100%;
  }
   .hero-breadcrumb {
    font-size: 0.78rem; color: var(--text-muted);
    margin-bottom: 1.5rem; display: flex; align-items: center; gap: 8px;
  }
  .hero-breadcrumb span { color: var(--teal-mid); }
  .hero-eyebrow {
    display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem;
  }
  .hero-eyebrow-line { width: 36px; height: 1px; background: var(--teal-mid); }
  .hero-eyebrow-text { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-mid); font-weight: 500; }
  .condition-hero h1 { color: var(--text-dark); margin-bottom: 1.2rem; }
  .condition-hero h1 em { font-style: italic; color: var(--teal-dark); }
  .hero-lead { font-size: 1.05rem; color: var(--text-mid); max-width: 480px; line-height: 1.8; margin-bottom: 2.5rem; }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .hero-visual {
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 16px;
    font-size: 0.82rem; color: var(--teal-dark);
  }
  .hero-icon-large {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(15,110,86,0.12);
    display: flex; align-items: center; justify-content: center;
  }
  .hero-icon-large svg { width: 48px; height: 48px; fill: var(--teal-dark); }
  .hero-visual p { opacity: 0.65; max-width: 180px; text-align: center; line-height: 1.5; }
  
  
  
  
  .image-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(15,110,86,0.12);
    display: flex; align-items: center; justify-content: center;
  }
  .image-icon svg { width: 38px; height: 38px; fill: var(--teal-dark); }
  .hero-image-placeholder p { color: var(--teal-dark); font-size: 0.82rem; opacity: 0.7; max-width: 180px; line-height: 1.5; }

  /* Steps */
  .steps-section {
    background: var(--teal-mid);
    padding: 10px 5vw;
    color: #fff;
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 900px;
    margin: 0 auto;
  }
  .step {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
  }
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.2);
  }
  .step-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.4);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #fff;
    margin: 0 auto 1rem;
	padding-bottom: 4px;
  }
  .step h3 { color: #fff; font-size: 1rem; font-weight: 500; font-family: var(--font-body); }

  /* How Can We Help */
  .help-section { background: var(--warm-white); }
  .help-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
  .tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
	max-width: 957px;
    margin: 0 auto;
    padding-bottom: 40px;
  }
  .tile {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.8rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 14px;
	text-decoration: none;
  }
  .tile:hover { background: var(--teal-light); border-color: var(--teal-mid); transform: translateY(-2px); }
  .tile-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--teal-mid);
    margin-top: 7px;
    flex-shrink: 0;
  }
  .tile p { font-size: 0.95rem; color: var(--text-dark); font-weight: 400; line-height: 1.5; }
  .help-cta { text-align: center; max-width: 560px; margin: 0 auto; }
  .help-cta p { margin-bottom: 1.5rem; font-size: 1rem; color: var(--text-mid); }

  /* Reviews */
  .reviews-section { background: var(--cream); }
  .reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
  .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
  .review-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
  }
  .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
  .review-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
  .review-author { font-size: 0.82rem; font-weight: 500; color: var(--text-dark); }
  .review-tag { font-size: 0.75rem; color: var(--teal-mid); background: var(--teal-light); padding: 2px 10px; border-radius: 999px; margin-left: 8px; }

/* ════════════════════════════════════════
     FOOTER (updated with address + phone)
  ════════════════════════════════════════ */
  footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 5vw 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 2.5rem; margin-bottom: 3rem;
  }
  .footer-brand h3 { font-family: var(--font-display); color: #fff; font-size: 1.3rem; margin-bottom: 0.4rem; font-weight: 600; }
  .footer-brand-tagline { font-family: var(--font-display); font-style: italic; font-size: 0.82rem; color: rgba(255,255,255,0.42); margin-bottom: 1.5rem; }

  .footer-contact-block { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.5rem; }
  .footer-contact-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.55; }
  .footer-contact-row svg { width: 15px; height: 15px; fill: var(--teal-mid); flex-shrink: 0; margin-top: 3px; }
  .footer-contact-row a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
  .footer-contact-row a:hover { color: #fff; }

  .footer-hours { font-size: 0.82rem; color: rgba(255,255,255,0.48); border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1rem; line-height: 1.9; }
  .footer-hours-title { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); display: block; margin-bottom: 5px; }
  .footer-social { margin-top: 1rem; }
  .footer-social a {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
  }
  .footer-social a:hover { background: rgba(255,255,255,0.16); border-color: var(--teal-mid); transform: translateY(-1px); }
  .footer-social img { width: 25px; height: 25px; display: block; }

  footer h4 { color: #fff; font-family: var(--font-body); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 0.5rem; }
  footer ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
  footer ul li a:link { color: rgba(255, 255, 255, 0.7); }
  footer ul li a:visited { color: rgba(255, 255, 255, 0.7); }
  footer ul li a:active { color: rgba(255, 255, 255, 0.7); }
  footer ul li a:hover { color: #fff; }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; flex-wrap: wrap; gap: 10px;
  }
  .footer-tagline-bottom { font-family: var(--font-display); font-style: italic; color: rgba(255,255,255,0.85); }
  

  /* ══════════════════════════════════════
     CONTENT PAGE – SERVICES
  ══════════════════════════════════════ */

  .content-hero {
    background: var(--teal-pale);
    border-bottom: 1px solid var(--border);
    padding: 64px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .content-hero-text h2 { max-width: 520px; }
  .content-hero-text p { max-width: 460px; margin-top: 1rem; font-size: 1rem; }

  /* Core Services */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .service-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 2.2rem;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
  }
  .service-card:link { color: #000; }
  .service-card:visited { color: #000; }
  .service-card:active { color: #000; }
  .service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(15,110,86,0.1); }
  .service-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius);
    background: var(--teal-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
  }
  .service-icon svg { width: 26px; height: 26px; fill: var(--teal-dark); }
  .service-card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
  .service-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 1.5rem; }
  .service-card .btn-outline { align-self: flex-start; font-size: 0.83rem; padding: 0.5rem 1.2rem; }

  /* Specialty */
  .specialty-section { background: var(--cream); }
  .specialty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 2.5rem;
  }
  .specialty-item {
    background: var(--warm-white);
    padding: 2.5rem;
    transition: background 0.2s;
  }
  .specialty-item:link { color: #000; }
  .specialty-item:visited { color: #000; }
  .specialty-item:active { color: #000; }
  .specialty-item:hover { background: var(--teal-pale); }
  .specialty-item .tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-mid);
    background: var(--teal-light);
    padding: 3px 10px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 0.8rem;
  }
  .specialty-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
  .specialty-item p { font-size: 0.9rem; color: var(--text-muted); }

  /* Meet the Doctors */
  .doctors-section { background: var(--warm-white); }
  .doctors-grid { 
		
		display:flex;
		flex-wrap:wrap;
		justify-content: center;
		
		margin-top: 2.5rem; 
	}
  .doctor-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
	margin:10px;
	max-width:400px;
    transition: box-shadow 0.2s, transform 0.2s;
	text-decoration:none;
	color:#000;
	background: var(--warm-white);
  }
  .doctor-card:link { color: #000; }
  .doctor-card:visited { color: #000; }
  .doctor-card:active { color: #000; }
  .doctor-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(15,110,86,0.1); }
  .doctor-photo {
    height: 200px;
    background: #222;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-dark);
    font-size: 0.82rem;
    flex-direction: column;
    gap: 10px;
  }
  .doctor-photo img{
	  height:100%;
  }
  .doctor-initials {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: rgba(15,110,86,0.15);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--teal-dark);
  }
  .doctor-info { padding: 1.5rem 1.8rem; }
  .doctor-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
  .doctor-title { font-size: 0.8rem; color: var(--teal-mid); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.8rem; }
  .doctor-bio { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
  .doctor-read-more{font-style:italic; color: var(--teal-dark);}

  /* Resources CTA */
  .resources-section {
    background: var(--teal-mid);
    color: #fff;
    text-align: center;
    padding: 72px 5vw;
  }
  .resources-section h2 { color: #fff; margin-bottom: 1rem; }
  .resources-section p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 2.5rem; }
  .resources-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .resource-pill {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: background 0.2s;
  }
  .resource-pill:link { color: #fff; }
  .resource-pill:visited { color: #fff; }
  .resource-pill:active { color: #fff; }
  .resource-pill:hover { background: rgba(255,255,255,0.22); }
  
  
  
  /* SYMPTOM / SIGNAL BAND */
  .signals-band {
    background: var(--teal-mid);
    padding: 48px 5vw;
    color: #fff;
  }
  .signals-band h3 { color: #fff; font-family: var(--font-body); font-weight: 500; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.5rem; opacity: 0.7; }
  .signals-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  .signal-item {
    display: flex; align-items: flex-start; gap: 12px;
  }
  .signal-check {
    width: 22px; height: 22px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.4);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
  }
  .signal-check::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.7); }
  .signal-item span { font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.5; }

  /* INFO CARDS */
  .info-section { background: var(--warm-white); }
  .info-section h2 { margin-bottom: 2.5rem; }
  .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
  }
  .info-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .info-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(15,110,86,0.08); }
  .info-card-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--teal-light);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.8rem;
  }
  .info-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
  .info-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

  /* TREATMENT SECTION */
  .treatment-section { background: var(--cream); }
  .treatment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2.5rem;
  }
  .treatment-steps { display: flex; flex-direction: column; gap: 0; }
  .treatment-step {
    display: flex; gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
  }
  .treatment-step:last-child { border-bottom: none; }
  .step-badge {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--teal-light);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.5rem;
    color: var(--teal-dark); font-weight: 600; flex-shrink: 0; padding-bottom: 7px;
  }
  .treatment-step h3 { font-size: 1rem; margin-bottom: 4px; }
  .treatment-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
  .treatment-aside {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: sticky; top: 90px;
  }
  .treatment-aside h3 { font-size: 1.2rem; margin-bottom: 1rem; }
  .treatment-aside p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.5rem; }
  .aside-stat { margin-bottom: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
  .aside-stat:last-of-type { border-bottom: none; margin-bottom: 1.5rem; }
  .aside-stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--teal-dark); font-weight: 600; line-height: 1; }
  .aside-stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

  /* FAQ */
  .faq-section { background: var(--warm-white); }
  .faq-section h2 { margin-bottom: 2rem; }
  .faq-list { max-width: 720px; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
  }
  .faq-q {
    font-weight: 500; font-size: 1rem; color: var(--text-dark);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; background: none; border: none; width: 100%; text-align: left;
    font-family: var(--font-body);
  }
  .faq-q:hover { color: var(--teal-dark); }
  .faq-toggle {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid var(--border); background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--teal-dark); flex-shrink: 0;
    transition: transform 0.2s, background 0.2s;
	padding-bottom: 1px
  }
  .faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--teal-light); }
  .faq-a { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.2s; }
  .faq-item.open .faq-a { max-height: 300px; padding-top: 0.8rem; }

  /* CTA BAND */
  .cta-band {
    background: var(--teal-dark); padding: 72px 5vw; text-align: center;
  }
  .cta-band h2 { color: #fff; margin-bottom: 1rem; }
  .cta-band p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2rem; }
  .cta-band .btn-primary { background: #fff; color: var(--teal-dark); }
  .cta-band .btn-primary:hover { background: var(--teal-light); }

  /* RELATED CONDITIONS */
  .related-section { background: var(--cream); padding: 64px 5vw; }
  .related-section h3 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.2rem; }
  .related-tiles { display: flex; gap: 1rem; flex-wrap: wrap; }
  .related-tile {
    background: var(--warm-white); border: 1px solid var(--border); border-radius: 999px;
    padding: 0.6rem 1.4rem; font-size: 0.88rem; color: var(--text-mid);
    text-decoration: none; transition: all 0.2s; cursor: pointer;
    font-family: var(--font-body); background-color: var(--warm-white);
  }
  .related-tile:hover { background: var(--teal-light); border-color: var(--teal-mid); color: var(--teal-dark); }
  
  
  /* ── BREADCRUMB ── */
  .breadcrumb {
    padding: 18px 5vw; font-size: 0.8rem; color: var(--text-muted);
    background: var(--cream); border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 8px;
  }
  .breadcrumb a { color: var(--text-muted); text-decoration: none; }
  .breadcrumb a:hover { color: var(--teal-dark); }
  .breadcrumb span { color: var(--teal-mid); }
  .breadcrumb strong { color: var(--text-dark); font-weight: 500; }
  
  /* Anchor Offsets */
  #meetourdoctors, #specialtycare{
	  scroll-margin-top: 60px;
  }
  

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; }
    .condition-hero { grid-template-columns: 1fr; }
    .treatment-grid { grid-template-columns: 1fr; }
    .hero-image { height: auto; }
    .hero-image img { height: auto; width:100%; display: block; }
    .steps-grid { grid-template-columns: 1fr; }
    .step:not(:last-child)::after { display: none; }
    .services-grid, .specialty-grid, .doctors-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .content-hero { padding: 48px 5vw; }
	.hero-BetterBreak {display:inline;}
  }
  
  
