:root{
    --primary:#1c562a;
    --secondary:#666666;
    --accent:#9f7a43;
    --white:#ffffff;
    --bg:#f4efcd;
    --shadow:0 16px 40px rgba(28,86,42,0.08);
    --radius:0;
    --radius-sm:0;
    --container:1320px;
    --transition:all .35s ease;
    --primary-font:"Poppins", serif;
    --secondary-font:"Poppins", sans-serif;
  }  

html {
	    scroll-behavior: smooth;
}

body main {
	font-size:16px;
}

.col-team-row .col-md-6 {
	border-top: solid 1px;
	border-right: solid 1px;
	min-height:250px;
	
	.team-feature {
		align-content:center;
	}
}

.col-team-row .col-md-6:nth-child(-n+3) {
	border-top:none;
}

.col-team-row .col-md-6:nth-child(3n) {
	border-right:none;
}

.cta-content-wrap {
	    position: sticky;
    top: 225px;
}

.border-faq {
	    border-left: solid 1px #9f7a43;
}

#accordion.faq-accordion {
	.card-header {
		padding-left:0;
	}
	
	.card-body {
		padding-left:0;
	}
	
}

.footer {
	margin-top:0;
}

.why-image-collage .tall.border-c  {
	border-color:var(--bg);
}

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

.font-big, .section-intro {
	font-size:20px;
}

.section-padding {
    padding:100px 0;
  }

  .section-padding-sm{
    padding:72px 0;
  }

  .eyebrow{
    display:inline-block;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--accent);
    font-weight:600;
    margin-bottom:14px;
  }

  .section-title{
    font-family:var(--primary-font);
    font-weight:600;
    line-height:1.2;
    font-size:48px;
    margin:0 0 16px;
    color:var(--primary);
    text-transform: capitalize;
  }

  .section-intro{
    color:var(--secondary-soft);
    max-width:780px;
    margin:0 auto;
  }

  .text-center .section-intro{
    margin-left:auto;
    margin-right:auto;
  }

  .btn-theme{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:48px;
    padding:14px 24px;
    background:var(--primary);
    border:1px solid var(--primary);
    color:#fff;
    font-size:14px;
    font-weight:600;
    letter-spacing:.7px;
    text-transform:uppercase;
    transition:var(--transition);
    box-shadow:none;
  }

  .btn-theme:hover{
    background:var(--accent);
    border-color:var(--accent);
    color:#fff;
    transform:translateY(-1px);
  }

  .btn-outline-theme{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:14px 28px;
    border-radius:4px;
    background:transparent;
    border:1px solid rgba(255,255,255,.75);
    color:#fff;
    font-size:12px;
    font-weight:600;
    letter-spacing:.7px;
    text-transform:uppercase;
    transition:var(--transition);
  }

  .btn-outline-theme:hover{
    background:#fff;
    color:var(--primary);
    border-color:#fff;
    transform:translateY(-1px);
  }

  .btn-outline-dark{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:14px 28px;
    border-radius:4px;
    background:transparent;
    border:1px solid rgba(28,86,42,.18);
    color:var(--primary);
    font-size:12px;
    font-weight:600;
    letter-spacing:.7px;
    text-transform:uppercase;
    transition:var(--transition);
  }

  .btn-outline-dark:hover{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
  }

  .site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:50;
    transition:var(--transition);
  }

  .site-header.is-scrolled{
    background:#ffffffcf;
    backdrop-filter:blur(12px);
    box-shadow:0 10px 30px rgba(0,0,0,.1);
  }

  .navbar-custom{
    padding:22px 0;
  }

  .navbar-brand{
    color:#fff !important;
    font-family:var(--secondary-font);
    font-size:34px;
    font-weight:600;
    line-height:.95;
    letter-spacing:-.3px;
  }

  .brand-sub{
    display:block;
    font-family:var(--secondary-font);
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:500;
    margin-top:8px;
    color:rgba(255,255,255,.85);
  }


  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active{
    color:#fff;
  }

  .nav-cta{
    margin-left:14px;
  }

  .navbar-toggler{
    border:0;
    box-shadow:none !important;
    padding:0;
  }

  .navbar-toggler-icon{
    filter:brightness(0) invert(1);
  }

  .hero{
    position:relative;
    height:100vh;
    color:#fff;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#0f1b13;
    max-height: 900px;
  }

  .hero-media{
    position:absolute;
    inset:0;
    z-index:0;
  }

  .hero-media::after{
    content:"";
    position:absolute;
    inset:0;
    background:
      linear-gradient(to right, rgba(13,20,14,.58) 0%, rgba(13,20,14,.30) 45%, rgba(13,20,14,.22) 100%),
      linear-gradient(to top, rgba(11,14,12,.50) 0%, rgba(11,14,12,.12) 48%, rgba(11,14,12,.16) 100%);
    z-index:2;
  }

  .hero-media video,
  .hero-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    inset:0;
  }

  .hero-content{
    position:relative;
    z-index:3;
    width:100%;
    padding:0px 0 120px;
  }

  .hero-card{
    max-width:760px;
  }

  .hero-kicker{
    font-size:15px;
    font-weight:600;
    color:rgba(255,255,255,.92);
    margin-bottom:14px;
    text-transform: uppercase;
  }

  .hero-title{
    font-family:var(--primary-font);
    font-size:62px;
    line-height:1.2;
    font-weight:600;
    margin:0 0 20px;
  }

  .hero-text{
    max-width:620px;
    color:rgba(255,255,255,.9);
    font-size:16px;
    margin-bottom:32px;
  }

  .hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
  }

  .hero-scroll{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    z-index:4;
    color:rgba(255,255,255,.85);
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:2px;
  }

  .hero-scroll::after{
    content:"";
    display:block;
    width:1px;
    height:44px;
    background:rgba(255,255,255,.5);
    margin:10px auto 0;
    animation:floatLine 1.8s ease-in-out infinite;
  }

  @keyframes floatLine{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(10px);}
  }

  .symptom-box{
    height:100%;
    background:rgba(255,255,255,.72);
    border:1px solid rgba(159,122,67,.12);
    border-radius:var(--radius);
    padding:34px 28px;
    box-shadow:var(--shadow);
    backdrop-filter:blur(6px);
  }

  .symptom-box h3{
    font-family:var(--primary-font);
    font-size:2rem;
    color:var(--accent);
    margin:0 0 18px;
    font-weight:600;
  }

  .symptom-list{
    list-style:none;
  }

  .symptom-list li{
    position:relative;
    padding-left:22px;
    margin-bottom:12px;
    color:var(--secondary-soft);
    font-size:16px;
    line-height:1.65;
  }
  

  .symptom-list li::before{
    content:"";
    width:8px;
    height:8px;
    transform: rotate(45deg);
    background:var(--accent);
    position:absolute;
    left:0;
    top:9px;
    opacity:.8;
  }

  .support-section{
    background:var(--bg);
  }

  .service-card{
    height:100%;
    background:#fff;
    border:1px solid rgba(28,86,42,.08);
    box-shadow:var(--shadow);
    transition:var(--transition);
    position:relative;
    overflow:hidden;
  }

  .service-card::before{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:4px;
    background:var(--primary);
  }

  .service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(28,86,42,.12);
  }

  .service-icon{
    width:54px;
    height:54px;
    border-radius:50%;
    background:rgba(159,122,67,.12);
    color:var(--accent);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:18px;
    font-weight:700;
  }

  .service-card h3{
    font-family:var(--primary-font);
    font-size:22px;
    line-height:1.2;
    margin:0 0 14px;
    color:var(--secondary);
    font-weight:600;
    margin-bottom: 0;
  }

  .service-content {
    padding: 20px;
    text-align: center;
  }

  .service-card p{
    margin:0;
    color:var(--secondary-soft);
  }

  .location-card{
    background:#fff;
    padding:30px 20px;
    border:1px solid rgba(159,122,67,.14);
    box-shadow:var(--shadow);

    .location-card p {
      font-size: 14px;
    }
  }

  .location-card h3{
    font-family:var(--primary-font);
    font-size:24px;
    margin:0 0 14px;
    color:var(--primary);
    font-weight:600;
  }

  .location-meta{
    list-style:none;
    margin-top:14px;
  }

  .location-meta li{
    color:var(--secondary-soft);
    margin-bottom:9px;
    font-size: 14px;
  }

  .location-meta strong{
    color:var(--secondary);
    font-weight:600;
  }

  .location-badge{
    display:inline-block;
    padding:6px 12px;
    border-radius:30px;
    background:rgba(28,86,42,.08);
    color:var(--primary);
    font-size:11px;
    letter-spacing:1px;
    text-transform:uppercase;
    font-weight:700;
    margin-bottom:16px;
  }

  .why-image-collage{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin:0 auto;
  }

  .why-image-collage .tall{
    grid-row:1 / span 2;
    overflow:hidden;
    min-height:540px;
    scale: .9;
    margin-right: -100px;
    border: solid 15px #fff;
  }

  .why-image-collage .square{
    overflow:hidden;
    min-height:260px;
  }

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

  .why-points{
    list-style:none;
    margin:28px 0 0;
  }

  .why-points li{
    position:relative;
    padding-left:34px;
    margin-bottom:16px;
    color:var(--secondary-soft);
  }

  .why-points li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:-2px;
    font-size:18px;
    color:var(--accent);
    font-weight:700;
  }

  .process-section{
    background:var(--bg);
    position:relative;
  }

  /* .process-section::before{
    content:"";
    position:absolute;
    inset:auto -100px -90px auto;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(159,122,67,.08);
    filter:blur(4px);
  } */

  .step-card{
    position:relative;
    height:100%;
    padding:14px 10px 0;
  }

  .step-number{
    font-family:var(--primary-font);
    font-size:4.4rem;
    line-height:.9;
    color:var(--accent);
    margin-bottom:8px;
    font-weight:700;
    letter-spacing:-1px;
  }

  .step-divider{
    width:100%;
    height:1px;
    background:rgba(159,122,67,.22);
    margin-bottom:18px;
  }

  .step-card h3{
    font-family:var(--primary-font);
    font-size:1.85rem;
    line-height:1.05;
    margin:0 0 14px;
    color:var(--secondary);
    font-weight:600;
  }

  .step-card p{
    font-size:16px;
    color:var(--secondary-soft);
    margin:0;
  }

  .team-section{
    position:relative;
    color:#fff;
    background:#111;
    overflow:hidden;
  }

  .team-bg{
    position:absolute;
    inset:0;
    z-index:0;
  }

  .team-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .team-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:
      linear-gradient(to bottom, rgba(10,14,11,.80), rgba(10,14,11,.82)),
      linear-gradient(to right, rgba(18,16,12,.70), rgba(18,16,12,.45));
  }

  .team-content{
    position:relative;
    z-index:2;
  }

  .team-feature{
    height:100%;
    padding:10px 12px 20px;
  }

  .team-feature-icon{
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.2);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--accent);
    margin-bottom:14px;
    font-size:18px;
    font-weight:700;
  }

  .team-feature h3{
    font-family:var(--primary-font);
    font-size:1.65rem;
    margin:0 0 10px;
    color:#fff;
    font-weight:600;
  }

  .team-feature p{
    margin:0;
    color:rgba(255,255,255,.78);
    font-size:16px;
  }

  .doctor-card{
    height:100%;
    background:#fff;
    overflow:hidden;
    box-shadow:0 12px 40px rgba(0,0,0,.16);
    transition:var(--transition);
  }

  .doctor-card:hover{
    transform:translateY(-6px);
  }

  .doctor-photo{
    aspect-ratio:1/1.05;
    overflow:hidden;
    background:#ddd;
  }

  .doctor-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position: top;
  }

  .doctor-body{
    padding:16px 14px 15px;
    color:var(--secondary);
    text-align:center;
  }

  .doctor-name{
    display:block;
    font-size:16px;
    font-weight:700;
    line-height:1.45;
    margin-bottom:4px;
    color:var(--primary);
  }

  .doctor-role{
    display:block;
    font-size:14px;
    color:var(--secondary-soft);
    text-transform:capitalize;
  }

  .cta-section{
    position:relative;
    min-height:500px;
    overflow:hidden;
    display:flex;
    align-items:center;
    color:#fff;
    background:#1a1a1a;
  }

  .cta-bg{
    position:absolute;
    inset:0;
    z-index:0;
  }

  .cta-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .cta-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:
      linear-gradient(to right, rgba(17,24,19,.65), rgba(17,24,19,.30)),
      linear-gradient(to top, rgba(17,24,19,.55), rgba(17,24,19,.15));
  }

  .cta-content{
    position:relative;
    z-index:2;
    width:100%;
    padding:110px 0;
  }

  .cta-panel{
    max-width:800px;
  }

  .cta-panel .section-title{
    color:#fff;
    margin-bottom:16px;
  }

  .cta-panel p{
    color:rgba(255,255,255,.86);
    margin-bottom:28px;
  }


  .reveal{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .8s ease, transform .8s ease;
  }

  .reveal.is-visible{
    opacity:1;
    transform:none;
  }

  @media (max-width: 1199.98px){
    .hero-title{
      font-size:48px;
    }

    .why-image-collage .tall{
      min-height:480px;
    }
  }

  @media (max-width: 991.98px){
    .navbar-collapse{
      background:rgba(14,18,15,.94);
      padding:18px;
      border-radius:12px;
      margin-top:14px;
    }

    .nav-cta{
      margin-left:0;
      margin-top:10px;
    }

    .hero{
      min-height:860px;
    }

    .hero-content{
      padding-top:160px;
      padding-bottom:250px;
    }

    .hero-card{
      max-width:100%;
    }

    .why-image-collage{
      margin-bottom:40px;
    }

    .section-padding{
      padding:82px 0;
    }

    .step-card{
      padding-top:0;
    }
  }

  @media (max-width: 767.98px){
    .navbar-custom{
      padding:16px 0;
    }

    .navbar-brand{
      font-size:28px;
    }

    .brand-sub{
      font-size:9px;
      letter-spacing:1.6px;
    }

    .hero{
      min-height:760px;
    }

    .hero-title{
      font-size:36px;
    }

    .hero-text{
      font-size:15px;
    }

    .hero-actions{
      flex-direction:column;
      align-items:flex-start;
    }

    .hero-actions .btn-theme,
    .hero-actions .btn-outline-theme{
      width:100%;
    }

    .section-padding{
      padding:68px 0;
    }

    .section-title{
      font-size:32px;
    }

    .symptom-box,
    .service-card,
    .location-card{
      padding:28px 22px;
    }

    .why-image-collage{
      grid-template-columns:1fr;
      max-width:100%;
    }

    .why-image-collage .tall,
    .why-image-collage .square{
      min-height:280px;
    }

    .cta-section{
      min-height:auto;
    }

    .cta-content{
      padding:90px 0;
    }
  }

  @media (max-width: 575.98px){
    .hero{
      min-height:690px;
    }

    .hero-title{
      font-size:36px;
    }

    .hero-kicker{
      font-size:13px;
    }

    .step-number{
      font-size:3.6rem;
    }


  }

.team-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    .doctor-card {
        width: 100%;
        max-width: 220px;
    }
}

.site-header:not(.is-scrolled) .navbar-brand img {
    filter: brightness(10);
}

.navbar-brand img {
    transition: .25s;
}

.site-header.is-scrolled .navbar-nav .nav-link {
    color: var(--text);
}

.navbar-nav .btn-theme {
    font-size: 12px;
    padding-inline: 20px;
}

.service-block img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.team-section {
    background-image: url('https://www.thesageclinic.com/wp-content/uploads/2021/10/home-services-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-color: #00000070;
    background-blend-mode: color;
}

h4 , b {
	font-weight:600;
}

.symptom-tabs{
    padding:80px 0;
    }
    
    
    /* COLLAGE */
    
    .image-collage{
    display:flex;
    gap:15px;
    flex-wrap: wrap;
    }
    
    .image-collage img{
    width:100%;
    height:100%;
    object-fit:cover;
    }

    
    .image-collage .img1,
    .image-collage .img2 {
        height:440px;
        max-width: 60%;
    }

    .image-collage  .img2 {
        margin-left: auto;
        margin-top: -300px;
        border: solid 15px #fff;
    }
    
    
    /* TABS */
    
    .symptom-nav .nav-link{
    border:none;
    color:#777;
    font-weight:500;
    }
    
    .symptom-nav .nav-link.active{
    color:var(--accent);
    border-bottom:3px solid var(--accent);
    background:none;
    }
    
    
    /* LIST */
    
    .symptom-list{
    columns:2;
    list-style:none;
    padding:0;
    }
    
    .symptom-list li{
    margin-bottom:8px;
    padding-left:16px;
    position:relative;
    }

    .symptom-nav .nav-link {
        font-size: 18px;
    }

    .support-section {
        background-image: linear-gradient(to bottom, #f4efcd 600px, #fff 0%);
    }

/* --- Timeline Section & Track --- */
.menopause-timeline {
    overflow: visible;
  }
  
  .timeline-container {
    padding-left: 80px; /* Space for the vertical line */
  }
  
  .step-progress-track {
    position: absolute;
    left: inherit;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #fff;
    z-index: 1;
  }
  
  .step-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--accent);
    transition: height 0.1s linear;
  }
  
  /* --- Step Cards (Left Side) --- */
  .step-card-scroll {
    padding: 20px 0; /* Vertical spacing between steps */
    margin-bottom: 40px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0.25; /* Dimmed when inactive */
    position: relative;
    z-index: 2;
    border-bottom: solid 1px;
  }

  .step-card-scroll:last-child {
    border-bottom: none;
  }
  
  .step-card-scroll.is-active {
    opacity: 1;
    transform: translateX(10px); /* Subtle nudge to show focus */
  }
  
  .step-card-scroll .step-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--text); /* Light grey when inactive */
    transition: color 0.4s ease;
  }
  
  .step-card-scroll h3 {
    font-weight: 700;
    color: var(--text);
    transition: color 0.4s ease;
  }
  
  /* Active Text Colors */
  .step-card-scroll.is-active .step-number,
  .step-card-scroll.is-active h3 {
    color: var(--accent);
  }
  
  /* --- Sticky Collage (Right Side) --- */
  .sticky-collage-container {
    position: sticky;
    top: 100px; /* Adjusts vertical centering while scrolling */
    height: 500px;
    width: 100%;
  }
  
  .collage-stack {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .collage-group {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.6s, 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.9) translateY(20px); /* Entrance "slide up" effect */
  }
  
  .collage-group.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    z-index: 10;
  }
  
  /* --- Image Layout Logic --- */
  .collage-group img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: solid 15px var(--bg);
  }
  
  .img-main {
    position: absolute;
    width: 100%;
    height: 450px;
    top: 120px;
    left: 0;
    z-index: 4;
  }
  
  .img-sub-top {
    position: absolute;
    width: 45%;
    height: 45%;
    top: 0;
    right: 0;
    z-index: 6;
  }
  
  .img-sub-bottom {
    position: absolute;
    width: 45%;
    height: 45%;
    bottom: 0;
    right: 5%;
    z-index: 5;
    opacity: 0.5; /* Keeps the "collage" depth */
  }

  .process-section.section-padding {
    padding-bottom: 100px;
  }

  

  @media only screen and (min-width:1200px) {
    .site-header .nav-link {
      border-bottom: solid 1px transparent;

      &:hover {
        border-bottom: solid 1px #fff;
      }
    }

    .site-header.is-scrolled .nav-link {
      border-bottom: solid 1px transparent;

      &:hover {
        border-bottom: solid 1px var(--primary);
      }
    }
  }

.statistic-box {
  padding: 30px;
  border-top: solid 1px var(--accent);
  height: 100%;
  border-right: solid 1px var(--accent);
  font-size: 18px;
  margin-top: 20px;
	border-bottom:solid 1px var(--accent);
}

.col-stat:nth-child(2n) .statistic-box {
	border-right:none;
}

.bg-grey {
	background-color:#f5f5f5;
}


.col-stat:nth-child(-n + 3) .statistic-box {
  border-top: none;
}

.col-stat:nth-child(3n) .statistic-box {
  border-right: none;
}

.pricing-heading-bar {
  width: 100%;
  max-width: 760px;
  height: 22px;
  background: #eadfc8;
  border-radius: 999px;
  margin-bottom: 18px;
}


.pricing-heading p {
  font-size: 22px;
  color: #6d6d6d;
  line-height: 1.4;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e7e2da;
  overflow: hidden;
  margin-bottom: 50px;
}

.pricing-card-content {
  padding: 42px 40px;
}

.pricing-card-content h3 {
  font-size: 32px;
  line-height: 1.2;
  color: #111;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--accent);
}

.pricing-subtitle {
  font-size: 18px;
  color: #111;
  margin-bottom: 24px;
  font-weight: 500;
}

.pricing-subtitle span {
  font-size: 15px;
  color: #6d6d6d;
  font-weight: 400;
}

.pricing-card-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #222;
  margin-bottom: 18px;
}

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

.pricing-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
}

.pricing-list li:last-child {
  margin-bottom: 0;
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: 20px;
  line-height: 1.2;
}

.statistic-box h3 {
  font-size: 24px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-card-side {
  border-left: 1px solid #ece7df;
  padding: 42px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}

.price-amount {
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.price-label {
  font-size: 18px;
  color: #222;
  line-height: 1.4;
}

.pricing-side-bottom {
  margin-top: 40px;
}

.btn-pricing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 58px;
  padding: 14px 28px;
  background: #233a63;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-pricing:hover {
  background: #1b2f51;
  color: #fff;
}

@media (max-width: 991.98px) {
  .pricing-heading h2 {
    font-size: 40px;
  }

  .pricing-heading p {
    font-size: 18px;
  }

  .pricing-card-content,
  .pricing-card-side {
    padding: 30px 24px;
  }

  .pricing-card-side {
    border-left: 0;
    border-top: 1px solid #ece7df;
    text-align: left;
    align-items: flex-start;
  }

  .price-amount {
    font-size: 42px;
  }

  .pricing-side-bottom {
    margin-top: 24px;
  }
}

@media (max-width: 575.98px) {
  .pricing-heading-bar {
    height: 14px;
    margin-bottom: 14px;
  }

  .pricing-heading h2 {
    font-size: 32px;
  }

  .pricing-card-content h3 {
    font-size: 24px;
  }

  .pricing-subtitle {
    font-size: 16px;
  }

  .price-amount {
    font-size: 36px;
  }

  .btn-pricing {
    min-width: 100%;
  }
}
  
  /* Responsive: Reset for Mobile */
  @media (max-width: 991px) {
    .timeline-container { padding-left: 15px; }
    .step-card-scroll { opacity: 1; transform: none; padding: 30px 0; }
    .step-progress-track { display: none; }
  }

  @media only screen and (max-width:767px) {
    main {
        overflow: hidden;
    }
	  
	  .font-big, .section-intro {
		  font-size:18px;
	  }

    .process-section::before {
        display: none;
    }

    .process-section.section-padding {
        padding-bottom: 30px;
    }

    .step-card-scroll.is-active {
        opacity: 1;
        transform: translateX(0px);
    }

    .step-card-scroll {
        opacity: .3;
    }

    .step-card-scroll:last-child {
        margin-bottom: 0;
    }

    .team-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-inline: 15px;
    }

    .team-wrap .doctor-card {
            width: 100%;
            max-width: 100%;
    }


    .navbar-toggler {
        color: var(--accent);
    }

    .site-header.is-scrolled .navbar-toggler-icon {
        filter: invert(1);
    }

    .image-collage .img2 {
        margin-top: -150px;
    }

    .image-collage .img1, .image-collage .img2 {
        height: 250px;
    }

    .why-image-collage .tall {
        display: none;
    }

    .why-image-collage {
        margin-bottom: 0;
        display: flex;
        flex-wrap: wrap;
    }

    .why-image-collage .square {
        max-width: 60%;
    }
    .why-image-collage .square:last-child {
        margin-left: auto;
        margin-top: -200px;
        border: solid 15px var(--bg);
    }

    .symptom-nav .nav-link {
        width: max-content;
    }

    .nav.symptom-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .site-header .navbar-collapse {
        border-radius: 0;
        margin-inline: -15px;
        background: #ffffffcf;
        backdrop-filter: blur(12px);
        box-shadow: none;
    }

    .site-header.is-scrolled .navbar-collapse {
        background:transparent;
        backdrop-filter: none;

       
    }

    .site-header .navbar-collapse .navbar-nav .nav-link {
        color: var(--text);
    }

    .site-header .nav-link {
        border-bottom: solid 1px #1c562a52;
    }

    .site-header .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .col-stat:nth-child(-n + 3) .statistic-box {
      border-top: solid 1px var(--accent);
    }   

    .statistic-box {
      max-width: 90%;
      margin-inline: auto;
      border-right: none;
      padding-inline:0;
    }
	  
	  .symptom-list {
		  columns: 1;
	  }
	  
	  .why-about .why-image-collage .square:last-child {
		    max-width: 100%;
        	border: none;
		    margin-top: 0;
	  }
	  
	  .why-about .row {
		  flex-direction:column-reverse;
	  }
	  
	  .col-team-row .col-md-6 {
		  border:none !important;
		  min-height:200px;
	  }
	  
	  .col-team-row .col-md-6 .team-feature  {
		  border-top:solid 1px #fff;
	  }
	  
	   .col-team-row .col-md-6:first-child .team-feature  {
		  border-top:none;
	  }
	  
	  .cta-content-wrap {
		  margin-bottom:50px;
	  }
	  

  }

#menu-desktop-menu .nav-menu li a {
	font-size:14px;
}

.faq-accordion .card .card-header h4 a {
	padding-right:20px;
}

.icon-box-wrap {
	background-color: #f4efcd50;
    border: solid 1px var(--accent);
    padding: 30px 30px 20px;
    width: 100%;
    max-width: 25%;
    font-size: 14px;
    line-height: 1.4;
	
	& h3 {
		font-size: 32px;
		font-weight: 600;
		color: #b39569;
	}
}

@media (max-width:600px) {
	.icon-box-wrap {
		   max-width: 45%;
		   padding: 20px 15px 15px;
	}
}


