/* ========================================
   CUSTOM STYLES - MAIN CONTENT & LAYOUT
   ======================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFC !important;
}

/* .layout-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFC !important;
} */

.main-content {
    flex: 1;
    background-color: #FFFFFC !important;
}

/* .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #FFFFFC !important;
    overflow: hidden;
} */

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c3e50;
}

h1 { font-size: 40px; }
h2 { font-size: 32px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

p {
    margin-bottom: 16px;
    color: #555;
}

.text-center { text-align: center; }

/* ========================================
   UTILITIES
   ======================================== */
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    outline: none;
}

.btn:focus {
    outline: none;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* ========================================
   BUTTON CONSULTATION TEXT STYLES
   ======================================== */
.btn-consultation-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    display: inline-block;
}

/* Large Tablet - 1200px and below */
@media (max-width: 1200px) {
    .btn-consultation-text {
        font-size: 16px;
        font-weight: 600;
    }
}

/* Tablet - 768px and below */
@media (max-width: 768px) {
    .btn-consultation-text {
        font-size: 15px !important;
        font-weight: 600;
    }
    
    .btn.btn-book-initial {
        padding: 3px 18px !important; 
        font-size: 18px !important;
    }
}
@media (max-width: 480px) {
    .btn-consultation-text {
        font-size: 15px !important;
        font-weight: 600;
    }
    
    .btn.btn-book-initial {
        padding: 2px 12px !important; 
        font-size: 14px !important;
    }
}
@media (max-width: 330px) {
    .btn-consultation-text {
        font-size: 15px !important;
        font-weight: 600;
    }
    
    .btn.btn-book-initial {
        padding: 2px 10px !important; 
        font-size: 12px !important;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .btn-consultation-text {
        font-size: 14px;
        font-weight: 600;
    }
}

/* Tiny Mobile - 320px and below */
@media (max-width: 320px) {
    .btn-consultation-text {
        font-size: 13px;
        font-weight: 600;
    }
}

/* ========================================
   BUTTON CONSULTATION GREEN STYLES
   ======================================== */
.btn.btn-consultation-green {
   
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 54px;
    width: 300px;
    padding: 29px 0px;
    border-radius: 38px;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    background: #5C845C;
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
    outline: none;
}

.btn.btn-consultation-green .btn-consultation-text {
    text-align: center;
    transition: color 0.3s cubic-bezier(0.4,0,0.2,1);
}

.btn.btn-consultation-green:hover {
    background: transparent;
    color: #5C845C;
    border: 2px solid #5C845C;
}

.btn.btn-consultation-green:hover .btn-consultation-text {
    color: #5C845C;
}

.btn.btn-consultation-green:focus {
    outline: none !important;
    box-shadow: none !important;
   
}

/* Large Tablet - 1200px and below */
@media (max-width: 1200px) {
    .btn.btn-consultation-green {
        height: 50px;
        width: 280px;
        padding: 0 20px;
        font-size: 18px;
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Tablet - 768px and below */
@media (max-width: 768px) {
    .btn.btn-consultation-green {
     
        
        font-size: 18px;
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Small Mobile - 480px and below */


/* Tiny Mobile - 320px and below */
@media (max-width: 360px) {
    .btn.btn-consultation-green {
        height: 40px;
        width: 220px;
        padding: 0 18px;
        font-size: 14px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 10px 32px;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: #f5f8f5;
    color: #5C845C;
    margin-bottom: 24px;
    margin-top: 0;
    text-align: center;
    border: none;
}

.badge-outline-green {
    border: 2px solid #5C845C;
    background: transparent;
    color: #5C845C;
}

.features-badge-btn {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
}

/* ========================================
   HERO SECTION
   ======================================== */

   .definitive-container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px; /* Optional: adds breathing room on smaller screens */
    box-sizing: border-box;
}

.hero-section {
    width: 100%;
 max-width: 1240px;
    margin: 0 auto;
    padding: 40px 40px 48px 40px;
    background-color: #fff !important;
    box-sizing: border-box;
}

.hero-row {
    display: flex;
  
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
   
}

/* .hero-col {
    flex: 1 1 0;
    min-width: 320px;
} */
/* 
.hero-col-left {
    width: 700px;
    min-width: 578px;
    max-width: 700px;
    height: 530px;
    min-height: 530px;
    max-height: 530px;
    flex: 0 0 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 24px;
}

.hero-col-right {
    width: 720px;
    min-width: 720px;
    max-width: 720px;
    flex: 0 0 720px;
    height: 680px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 24px;
} */

.hero-col-left,
.hero-col-right {
   
    max-width: 50%;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}


.hero-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #0E2767;
    line-height: 1.15;
    margin-bottom: 18px;
}

.highlight-green {
    color: #5C845C;
    font-family: inherit;
}

.hero-description {
    font-size: 16px;
    font-weight:600;
    color: #222;
    margin-bottom: 32px;
    
    line-height: 1.6;
}

.hero-image-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 48px;
    background: #fff;/*
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);*/
}

.btn.btn-primary {
    background-color: #5C845C;
    color: #fff;
    border: none;
    border-radius: 38px;
    font-size: 20px;
    font-weight: 700;
    padding: 16px 40px;
    margin-top: 18px;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.btn.btn-primary:hover {
    background-color: #466a46;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    padding: 10px 32px;
    border-radius: 28px;
    border: 2px solid #5C845C;
    background: #f5f8f5;
    color: #5C845C;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 32px;
    margin-top: 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(92,132,92,0.04);
    width: auto;
    max-width: 100%;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}



/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section-bg {
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    right: 50%;
    position: relative;
    background: #f5f8f5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
    min-height: 800px;
}
.features-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none !important;
    box-shadow: none;
}

.features-row {
    display: flex;
  
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.features-col {
    flex-direction: column;
    justify-content: flex-start;
}

.features-col-left {
    max-width: 650px;
    padding-right: 40px;
}

.features-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #0E2767;
}

.features-title .highlight-green {
    color: #5C845C;
    font-family: inherit;
}

.features-col-right {
    flex: 1;
    padding-left: 40px;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.features-inner {
   
    height: auto;
    margin: 0 auto;
    padding: 50px 40px;
    background-color: #f5f8f5 !important;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: normal;
    letter-spacing: 0;
    color: #0E2767;
}

.feature-desc {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0;
    color: #3B3B3B;
}

/* ========================================
   MISSION SECTION
   ======================================== */
.mission-section {
    
    margin: 80px auto 0 auto;
    padding-bottom: 80px;
    background-color: #fff !important;
}

.mission-title {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #0E2767;
    margin-bottom: 32px;
    letter-spacing: 0;
}

.mission-image-wrapper {
    width: 100%;
    border-radius: 28px 28px 0 0;
    overflow: hidden;
}

.mission-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.mission-card {
    display: flex;
    width: 100%;
    min-height: 260px;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.mission-card-left {
    background: #5C845C;
    color: #fff;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 20px;
    padding: 30px;
}

.mission-card-highlight {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    display: block;
}

.mission-card-right {
    background: #fff;
    color: #222;
    width: 50%;
    border-bottom-right-radius: 20px;
    padding: 40px 32px;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}

/* ========================================
   VISIT OPTIONS (FLIP CARDS) SECTION
   ======================================== */
.visit-options-section {
    /* width: 1240px; */
    margin: 80px auto 0 auto;
    padding-bottom: 80px;
    background-color: #fff !important;
}

.visit-options-title {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #0E2767;
    margin-bottom: 24px;
    letter-spacing: 0;
}

.visit-options-desc {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #222;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.visit-options-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    padding: 10px 0px ;
}

.visit-card {
    width: 100%;
    height: 490px;
    perspective: 1200px;
}

.visit-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
    transform-style: preserve-3d;
}

.visit-card:hover .visit-card-inner,
.visit-card:focus-within .visit-card-inner {
    transform: rotateY(180deg);
}

/* Enhanced animation for touch devices */
@media (max-width: 1024px) {
    .visit-card {
        cursor: pointer;
    }
    
    .visit-card-inner {
        transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    }
    
    .visit-card:focus-within {
        height: 490px;
    }
}

/* Desktop styles - 1024px and above */
@media (min-width: 1025px) {
    .visit-card {
        cursor: default;
    }
    
    .visit-card-inner {
        transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
    }
    
    .visit-card-back {
        height: auto;
    }
}

/* Ensure smooth animation on all devices */
.visit-card-inner {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.visit-card-front, .visit-card-back {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 20px;
    backface-visibility: hidden;
   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.visit-card-front {
    background: #5C845C;
    color: #fff;
    z-index: 2;
    justify-content: flex-start;
    padding: 40px 0 0 0;
    border-radius: 20px;
    overflow: hidden;
}

.visit-card-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 56px;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.1;
}

.visit-card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: auto;
    display: block;
    border-radius: 0;
}

.visit-card-back {
    background: #fff;
    color: #0E2767;
    transform: rotateY(180deg);
    z-index: 3;
    padding: 40px 32px;
    justify-content: flex-start;
    align-items: flex-start;
    border: 2px solid #5C845C;
    border-radius: 20px;
    overflow: hidden;
}

.visit-card-back-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 18px;
    color: #0E2767;
}

.visit-card-back-list {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #222;
    padding-left: 18px;
    margin: 0;
    line-height: 1.7;
}

.visit-card-back-list li {
    margin-bottom: 16px;
}



/* ========================================
   INDEX PAGE COMPLETE RESPONSIVE STYLES
   ======================================== */

/* Desktop Styles - 1200px and above */


.gradient-blink-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg, #0E2767 0%, #5C845C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blink-gradient-shade 1.5s infinite alternate;
    max-width: 600px;
    width: 100%;
    display: inline-block;
    margin-top: 200px;
    padding: 0px 40px;
}
@keyframes blink-gradient-shade {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.5);
    }
    100% {
        filter: brightness(1);
    }
}

/* ========================================
   APPOINTMENT DETAILS SECTION
   ======================================== */
.appointment-details-section {
    width: 100%;
    margin: 80px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff !important;
}
.appointment-details-inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1240px;
    /* width: 100%; */
    gap: 48px;
}
.appointment-details-left {
    
    align-items: center;
    justify-content: flex-end;
    min-width: 320px;
}
.appointment-details-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #0E2767;
    text-align: left;
    line-height: 1.1;
    padding: 0px 40px;
}
.appointment-details-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.appointment-details-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 32px;
    width: 540px;
}
.appointment-card {
    background: #5C845C1A;
    border-radius: 6px;
    padding: 28px 24px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 170px;
    box-sizing: border-box;
    box-shadow: none;
    /* background-color: #5C845C1 !important; */
}
.appointment-card-img {
    width: 100%;
    height: 115px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 16px;
}
.appointment-card-price-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0E2767;
    margin-bottom: 0;
}
.appointment-card-price {
    font-size: 22px;
    color: #0E2767;
    font-weight: 800;
}
.appointment-card-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0E2767;
    margin-bottom: 8px;
}
.appointment-card-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #222;
    font-weight: 400;
    line-height: 1.5;
}
.appointment-details-blink-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-top: 32px;
    margin-bottom: 0;
}
@media (max-width: 1100px) {
    .appointment-details-inner {
        flex-direction: column;
        align-items: center;
        /* gap: 32px; */
    }
    .appointment-details-left {
        justify-content: center;
        width: 100%;
    }
    .appointment-details-title {
        text-align: center;
        font-size: 36px;
    }
    .appointment-details-cards {
        width: 100%;
        max-width: 540px;
    }
    .appointment-details-blink-wrapper {
        justify-content: center;
    }
}
@media (max-width: 700px) {
    .appointment-details-cards {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 18px;
        width: 100%;
    }
    .appointment-details-title {
        font-size: 24px;
    }
    .appointment-card {
        padding: 16px 10px 12px 10px;
        min-height: 120px;
    }
    .appointment-details-blink-wrapper {
        margin-top: 24px;
    }
}

/* ========================================
   OUR SERVICES SECTION
   ======================================== */
.our-services-section {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 80px auto;
    padding: 0 24px;
    background-color: #fff !important;
}
.our-services-title {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #0E2767;
    margin: 32px 0 40px 0;
}
.our-services-row {
    display: flex;
    width: 100%;
    gap: 0;
}
.our-services-col-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}/*
.our-services-card-lg {
    border: 8px solid #5C845C;
    border-radius: 16px;
    padding: 32px 36px;
    margin-bottom: 32px;
    background: #fff;
    background-color: #f5f8f5 !important;
}*/
.our-services-card-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0E2767;
    margin-bottom: 16px;
}
.our-services-card-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #222;
    font-weight: 400;
    line-height: 1.6;
}
.our-services-row-bottom {
    display: flex;
    flex-direction: row;
    gap: 32px;
    width: 100%;
}
.our-services-img-col {
    
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.our-services-img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: 18px;
    background: #f6f8f4;
    display: block;
    margin: 0 auto;
}
.our-services-cards-col {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 32px;
}
.our-services-card {
    border: 2px solid #5C845C;
    border-radius: 16px;
    padding: 32px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    flex: 1;
    margin-bottom: 0;
    justify-content: space-between;
    background-color: #fffffc !important;
}
.our-services-card-list {
    display: block;
    margin-top: 12px;
    color: #0E2767;
    font-weight: 700;
    font-size: 17px;
}
.our-services-btn {
    margin-top: 24px;
    background: #5C845C;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 28px;
    padding: 14px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(92,132,92,0.08);
    cursor: pointer;
    align-self: flex-start;
}
.our-services-btn:hover {
    background: transparent;
    color: #5C845C;
    border: 2px solid #5C845C;
}
@media (max-width: 1100px) {
    .our-services-title {
        font-size: 36px;
    }
    .our-services-col-main {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }
    .our-services-row-bottom {
        flex-direction: column;
        gap: 24px;
    }
    .our-services-img-col {
        justify-content: center;
        margin-bottom: 18px;
    }
    .our-services-cards-col {
        flex-direction: column;
        gap: 24px;
    }
    .our-services-img {
        width: 60%;
     
        height: auto;
    }
}
@media (max-width: 700px) {
    .our-services-section {
        padding: 0 4px;
    }
    .our-services-title {
        font-size: 24px;
    }
    .our-services-card-lg, .our-services-card {
        padding: 16px 18px;
    }
    .our-services-img {
      
        max-width: 100%;
    }
    .our-services-card-title {
        font-size: 18px;
    }
    .our-services-card-desc {
        font-size: 14px;
    }
    .our-services-btn {
        font-size: 15px;
        padding: 10px 16px;
    }
}

/* ========================================
   STATES WE SERVE SECTION (UPDATED)
   ======================================== */
.states-serve-section {
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    right: 50%;
    position: relative;
    background: #fff;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff !important;
    padding-bottom: 50px;
}
.states-serve-inner {
    width: 100%;
    
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
}
.states-serve-title {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #0E2767;
    margin: 40px 0 24px 0;
    letter-spacing: 1px;
}
.states-serve-banner {
    width: 100%;
    border: 2px solid #5C845C;
    border-left: none;
    border-right: none;
    padding: 18px 0 14px 0;
    margin-bottom: 32px;
    margin-top: 0;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #5C845C;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.states-serve-banner-inner {
    display: inline-block;
    white-space: nowrap;
    min-width: 100%;
    will-change: transform;
    animation: marquee-scroll 18s linear infinite;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}
.states-serve-subtitle {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #0E2767;
    margin-bottom: 36px;
}
.states-serve-maps-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 64px;
    width: 100%;
    margin-bottom: 24px;
}
.states-serve-map-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.states-serve-map-img {
    width: 280px;
    height: 240px;
    object-fit: contain;
    display: block;
    margin-bottom: 8px;
}
.states-serve-map-label {
    margin-top: 12px;
    background: #fff;
    border: 2px solid #5C845C;
    color: #5C845C;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    border-radius: 18px;
    padding: 2px 18px;
    box-shadow: 0 2px 8px rgba(92,132,92,0.04);
    z-index: 2;
    position: static;
    left: auto;
    top: auto;
    transform: none;
}
.states-serve-gif-placeholder {
    width: 220px;
    height: 180px;
    background: transparent;
    display: block;
}
.states-serve-bottom-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 48px;
    width: 100%;
    margin-bottom: 0;
    margin-top: -24px;
}
.states-serve-desc-col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 350px;
    max-width: 600px;
}
.states-serve-desc {
    margin-top: 0;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    color: #5C845C;
    font-weight: 600;
    max-width: 600px;
    margin-left: 0;
    margin-right: 0;
}
.states-serve-maps-row {
    margin-bottom: 0;
}
@media (max-width: 1100px) {
    .states-serve-title {
        font-size: 32px;
    }
    .states-serve-banner {
        font-size: 20px;
    }
    .states-serve-maps-row {
        gap: 24px;
    }
    .states-serve-map-img, .states-serve-gif-placeholder {
        width: 80%;
        height: auto;
    }
    .DC {
        width: 80%;
        height: auto;
    }
    .states-serve-map-label {
        font-size: 14px;
        padding: 2px 10px;
    }
    .states-serve-bottom-row {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .states-serve-desc-col {
        min-width: 0;
        max-width: 100%;
        justify-content: center;
    }
    .states-serve-desc {
        font-size: 18px;
        max-width: 100%;
      text-align: center;
        padding: 0px 40px;
    }
    .medication-img-col img {
        width: 150% !important;
        height: auto !important;
        object-fit: contain;
        border-radius: 12px;
        background: #fff;
    }
    
}
@media (max-width: 700px) {
    .states-serve-section {
        padding: 0 4px;
    }
    .states-serve-inner {
        padding: 0 4px;
    }
    .states-serve-title {
        font-size: 20px;
    }
    .states-serve-banner {
        font-size: 13px;
        padding: 8px 0 6px 0;
    }
    .states-serve-subtitle {
        font-size: 15px;
    }
    .states-serve-maps-row {
       
        gap: 10px;
        margin-bottom: 10px;
    }
    .states-serve-map-img, .states-serve-gif-placeholder {
        width: 80%;
        height: auto;
    }
    .states-serve-map-label {
        font-size: 10px;
        padding: 1px 6px;
        margin-top: 4px;
    }
    .states-serve-desc {
        font-size: 12px;
        margin-top: 16px;
    }
    .medication-img-col img {
        width: 50% !important;
        height: auto !important;
        object-fit: contain;
        border-radius: 12px;
        background: #fff;
    }
}

/* ========================================
   INITIAL ASSESSMENT INFOGRAPHIC SECTION
   ======================================== */
.assessment-infographic-section {
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    right: 50%;
    position: relative;
    background: #f5f8f5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
}
.assessment-infographic-bg-img {

    max-width: 70%;
    height: auto;
    display: block;
    padding: 100px;
}
.assessment-infographic-container {
    position: relative;
    width: 1050px;
    height: 1050px;
    max-width: 98vw;
    max-height: 98vw;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.assessment-infographic-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 1050px;
    height: 1050px;
    z-index: 1;
}
.assessment-infographic-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 390px;
    height: 390px;
    background: #5C845C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.assessment-infographic-center-text {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
}
.assessment-infographic-point {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    text-align: center;
}
.assessment-infographic-number {
    width: 72px;
    height: 72px;
    background: #0E2767;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(14,39,103,0.08);
}
.assessment-infographic-desc {
    color: #222;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0%;
}
/* Positioning the points */
.assessment-point-1 {
    top: 60%;
    left: 2%;
}
.assessment-point-2 {
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
}
.assessment-point-3 {
    top: 60%;
    right: 2%;
}
.assessment-point-4 {
    bottom: 7%;
    left: 50%;
    transform: translateX(-50%);
}
.assessment-point-5 {
    top: 2%;
    left: 13%;
}
@media (max-width: 1200px) {
    .assessment-infographic-container {
        width: 98vw;
        height: 98vw;
        min-width: 320px;
        min-height: 320px;
        max-width: 98vw;
        max-height: 98vw;
    }
    .assessment-infographic-circles {
        width: 98vw;
        height: 98vw;
    }
    .assessment-infographic-center {
        width: 25vw;
        height: 25vw;
    }
    .assessment-infographic-center-text {
        font-size: 3vw;
    }
    .assessment-infographic-point {
        width: 18vw;
    }
    .assessment-infographic-number {
        width: 4vw;
        height: 4vw;
        font-size: 2vw;
        margin-bottom: 1vw;
    }
    .assessment-infographic-desc {
        font-size: 1.5vw;
    }
}
@media (max-width: 900px) {
    .assessment-infographic-container {
        width: 98vw;
        height: 98vw;
        min-width: 320px;
        min-height: 320px;
        max-width: 98vw;
        max-height: 98vw;
    }
    .assessment-infographic-circles {
        width: 98vw;
        height: 98vw;
    }
    .assessment-infographic-center {
        width: 120px;
        height: 120px;
    }
    .assessment-infographic-center-text {
        font-size: 16px;
    }
    .assessment-infographic-point {
        width: 120px;
    }
    .assessment-infographic-number {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    .assessment-infographic-desc {
        font-size: 12px;
    }
    .medication-img-col img{
        width: 60% !important;
    }
}

/* ========================================
   COMMONLY PRESCRIBED WEIGHT LOSS MEDICATIONS SECTION
   ======================================== */
.medications-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 80px 0 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  background: #fff !important;
}

.medications-bg-circle {
  display: none;
}

.medications-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.medications-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #0E2767;
  text-align: center;
  margin-bottom: 48px;
}

.medication-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;

  max-width: 100%;
  position: relative;
  z-index: 2;
}

.medication-img-col {
  flex: 0 0 120px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

    .medication-img-col img {
        width: 330px;
        height: 330px;
        object-fit: contain;
        border-radius: 12px;
        background: #fff;
    }

.medication-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  border-left: none;
}

.medication-badge {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.badge-orlistat { background: #5C845C; }
.badge-phentermine { background: #3B82F6; }
.badge-phendimetrazine { background: #1E6B3A; }
.badge-glp1 { background: #2C3E50; }

.medication-desc-bubble {
  background: #fff;
  /* border-radius: 12px; */
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.10);
  padding: 18px 28px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  color: #222;
  min-width: 320px;
  max-width: 600px;
  position: relative;
  margin-left: 16px;
  border-left: 4px solid #5C845C;
  padding-left: 24px;
}

.medication-desc-bubble:before {
  content: "";
  position: absolute;
  left: -18px;
  top: 28px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 18px solid #5C845C;
}

.medication-desc-bubble.large {
  min-width: 380px;
  max-width: 700px;
  padding: 24px 32px;
}

.medication-desc-bubble.large ul {
  margin: 0;
  padding-left: 18px;
  font-size: 16px;
}

.medication-desc-bubble ul {
  list-style-type: disc;
  margin: 0 0 0 18px;
  padding-left: 18px;
}
.medication-desc-bubble ul ul {
  list-style-type: disc;
  margin: 0 0 0 18px;
  padding-left: 18px;
}
.medication-desc-bubble li {
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .medications-inner { max-width: 98vw; }
  .medication-row { flex-direction: column; align-items: center; gap: 12px;padding: 0 20px; }
  .medication-desc-bubble, .medication-desc-bubble.large { margin-left: 0; min-width: 0; max-width: 85vw; }
  .medication-img-col { margin-bottom: 8px; }
}

/* ========================================
   TREATMENT OPTIONS SECTION (RESTORED)
   ======================================== */
.treatment-options-section {
    background: #fff;
    padding: 60px 0 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.treatment-options-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #0E2767;
    margin-bottom: 40px;
    margin-top: 0;
    text-align: center;
    width: 100%;
}
.treatment-options-center-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    width: 100%;
}
.treatment-options-img-col {
   
    display: flex;
    align-items: center;
    justify-content: center;
}
.treatment-options-img {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(44,62,80,0.10);
}
.treatment-options-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 0;
    max-width: 600px;
}
.treatment-options-desc {
    font-size: 18px;
    color: #222;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 24px;
    font-weight: 400;
}
.treatment-options-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}
.treatment-options-list li {
    font-size: 18px;
    color: #222;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.treatment-options-check img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.treatment-options-quote {
    font-size: 20px;
    color: #5C845C;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    margin-top: 18px;
    margin-bottom: 0;
    line-height: 1.4;
}
.treatment-options-quote span {
    color: #5C845C;
    font-weight: 700;
}
@media (max-width: 900px) {
    .treatment-options-center-row {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    .treatment-options-img-col, .treatment-options-content-col {
        max-width: 100%;
        flex: 1 1 100%;
        justify-content: center;
        align-items: center;
    }
    .treatment-options-img {
        width: 220px;
        height: 220px;
    }
    .treatment-options-title {
        font-size: 32px;
    }
    .treatment-options-desc, .treatment-options-list li {
        font-size: 15px;
    }
    .treatment-options-quote {
        font-size: 15px;
    }
    .assessment-infographic-bg-img {
        max-width: 120%;
        height: auto;
        display: block;
        padding: 120px;
    }
}

/* Feature Icon - 1200px and below */
@media (max-width: 1200px) {
    .feature-icon img {
        width: 29px;
        height: 29px;
    }
}

/* Feature Icon - 1024px to 768px */
@media (max-width: 1024px) and (min-width: 769px) {
    .feature-icon img {
        width: 24px;
        height: 24px;
    }
}

/* Feature Icon - 768px and below */
@media (max-width: 768px) {
    .feature-icon img {
        width: 23px;
        height: 23px;
    }
}

/* Medication Description Bubble - Below 900px */
@media (max-width: 900px) {
    .medication-desc-bubble {
        font-size: 14px;
    }
    
    .medication-desc-bubble.large ul {
        font-size: 12px;
    }
}

/* Washington DC Image - 700px and below */
@media (max-width: 700px) {
    .DC {
        width: 70%;
        height: auto;
    }
}

/* Assessment Infographic - 1200px to 900px */
@media (max-width: 1200px) and (min-width: 901px) {
    .assessment-infographic-bg-img {
        max-width: 80%;
        height: auto;
        display: block;
        padding: 120px;
    }
}

/* Assessment Infographic - 600px to 480px */
@media (max-width: 600px) and (min-width: 481px) {
    .assessment-infographic-bg-img {
        max-width: 142%;
        height: auto;
        display: block;
        padding: 120px;
    }
}

/* Assessment Infographic - 400px to 375px */
@media (max-width: 400px) and (min-width: 376px) {
    .assessment-infographic-bg-img {
        max-width: 120%;
        height: auto;
        display: block;
        padding: 100px;
    }
}

/* Assessment Infographic - 375px and below */
@media (max-width: 375px) {
    .assessment-infographic-bg-img {
        max-width: 110%;
        height: auto;
        display: block;
        padding: 80px;
    }
}

/* Assessment Infographic - 480px and below */
@media (max-width: 480px) {
    .assessment-infographic-bg-img {
        max-width: 145%;
        height: auto;
        display: block;
        padding: 100px;
    }
}

/* ========================================
   FINAL QUOTE SECTION
   ======================================== */
.final-quote-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: url('/assets/services and medicaitons page/quote-bg-img.jpg') center center/cover no-repeat, #0E2767;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 80px 0;
    z-index: 1;
}
.final-quote-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.final-quote-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.final-quote-content blockquote {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    margin: 0;
    padding: 0 24px;
    text-shadow: 0 2px 16px rgba(14,39,103,0.18);
}
@media (max-width: 900px) {
    .final-quote-section {
        min-height: 180px;
        padding: 40px 0 40px 0;
    }
    .final-quote-content blockquote {
        font-size: 1.3rem;
        padding: 0 8px;
    }
}

/* ========================================
   PRICING VISIT BUTTONS STYLES
   ======================================== */
.btn.btn-book-initial,
.btn.btn-schedule-monthly {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: auto !important;
    padding: 8px 32px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    /* Removed transition animation */
    background: #fff;
    color: #5C845C;
    border: none;
    position: relative;
    overflow: hidden;
    outline: none;
    box-shadow: none;
    max-width: none !important;
    min-width: auto !important;
}

/* Removed hover effects */
.btn.btn-book-initial:hover,
.btn.btn-schedule-monthly:hover {
    background: #fff;
    color: #5C845C;
    border: none;
}

/* Removed focus effects */
.btn.btn-book-initial:focus,
.btn.btn-schedule-monthly:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: #fff !important;
    color: #5C845C !important;
}

/* Removed active effects */
.btn.btn-book-initial:active,
.btn.btn-schedule-monthly:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: #fff !important;
    color: #5C845C !important;
}

/* ========================================
   QUIZ STYLES
   ======================================== */
.quiz-root {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background: none;
    margin-top: 55px;
}
.quiz-card {
    width: 740px;
    min-height: 740px;
    max-width: 98vw;
    box-sizing: border-box;
    background: #FFFFFC;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.10);
    padding: 0 0 40px 0;
    margin: 0 auto;
    display: none;
}
.quiz-card:first-child {
    display: block;
}
.quiz-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #0E2767;
    text-align: center;
    margin-bottom: 18px;
    margin-top: 18px;
    line-height: 1.2;
}
.quiz-highlight {
    color: #5C845C;
    font-family: inherit;
}
.quiz-desc {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 1%;
    text-align: center;
    color: #222;
    margin-bottom: 18px;
}
/* --- Quiz Button Row: Centered and Evenly Spaced --- */
.quiz-btn-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
    padding: 0;
    width: 100%;
}
.quiz-btn-row .btn-primary, .quiz-btn-row .btn-quiz-previous {
    height: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.quiz-btn-row-end {
    justify-content: flex-end;
}
.quiz-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin: 32px 0;
}
.quiz-option {
    background: #f5f8f5;
    border-radius: 8px;
    width: 320px;
    padding: 16px 0;
    text-align: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    transition: background 0.2s, color 0.2s;
    border: 2px solid transparent;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quiz-option:hover, .quiz-option.selected {
    background: #e0ede0;
    border: 2px solid #5C845C;
}
.quiz-gender-option {
    justify-content: space-between;
    padding: 12px 24px;
}
.quiz-gender-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}
@media (max-width: 600px) {
    .quiz-card {
        padding: 24px 6px 24px 6px;
        min-width: 0;
        max-width: 98vw;
    }
    .quiz-option, .quiz-gender-option {
        width: 98vw;
        min-width: 0;
        max-width: 98vw;
        font-size: 16px;
        padding: 10px 0;
    }
    .quiz-gender-img {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   QUIZ BUTTONS (ENFORCED)
   ======================================== */
.quiz-btn-row .btn-primary {
    background: #0E2767 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    padding: 12px 0 !important;
    min-width: 120px !important;
    box-shadow: none !important;
    outline: none !important;
    transition: background 0.2s, color 0.2s, border 0.2s !important;
    display: inline-block !important;
}

.quiz-btn-row .btn-primary:focus {
    outline: none !important;
    box-shadow: none !important;
}
.quiz-btn-row .btn-quiz-previous {
    color: rgba(14, 39, 103, 1) !important;
    border: 2px solid rgba(14, 39, 103, 1) !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    height: 50px !important;
    line-height: 1.2 !important;
    padding: 0 18px !important;
    min-width: 120px !important;
    box-shadow: none !important;
    outline: none !important;
    transition: background 0.2s, color 0.2s, border 0.2s !important;
    display: inline-block !important;
    cursor: pointer !important;
    margin-top:15px;
}

.quiz-btn-row .btn-quiz-previous:focus {
    outline: none !important;
    box-shadow: none !important;
}

.quiz-progress-bar-container {
    width: 100%;
    height: 7px;
    background: #e6efe6;
    border-radius: 6px;
    margin-bottom: 32px;
    margin-top: 0 !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(44,62,80,0.04);
}
.quiz-progress-bar {
    height: 100%;
    background: #5C845C;
    border-radius: 6px;
    transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
    width: 0%;
    position: absolute;
    left: 0;
    top: 0;
}
.quiz-progress-bar-indicator {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #5C845C;
    border-radius: 6px;
    transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}
@media (max-width: 600px) {
    .quiz-progress-bar-container {
        height: 5px;
        margin-bottom: 18px;
    }
}

.quiz-content-inner {
    width: 90%;
    max-width: 100%;
    margin: 0 auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Gender Option Overflow Styles --- */
.quiz-card-center-content .quiz-title {
    margin-top: 80px;
    margin-bottom: 80px;
}
.quiz-gender-option {
    position: relative;
    overflow: visible;
    align-items: center;
    justify-content: center;
    min-height: 110px;
}
.quiz-gender-img-wrapper {
    position: absolute;
  
    left: 15%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 100%;
    pointer-events: none;
}
/* .quiz-gender-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    object-fit: cover;
} */
.quiz-gender-label {
    position: relative;
    z-index: 3;
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-top: 32px;
    width: 100%;
    text-align: center;
}

/* --- Height/Weight Custom Fields --- */
.quiz-hw-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0 0 0;
    align-items: center;
    width: 100%;
}
.quiz-hw-row {
    display: flex;
    gap: 24px;
    width: 100%;
    justify-content: center;
}
.quiz-hw-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 180px;
}
.quiz-hw-input-group {
    display: flex;
    align-items: center;
    background: #f5f8f5;
    border-radius: 8px;
    padding: 0 12px;
    width: 180px;
}
    .quiz-hw-input-group .quiz-input {
        border: none;
        background: transparent;
        width: 80px;
        font-size: 20px;
        font-weight: 600;
        padding: 16px 0;
        margin: 0;
        opacity: 0.5;
    }
    
    .quiz-hw-input-group .quiz-input:focus {
        outline: none !important;
        box-shadow: none !important;
        border: none !important;
    }

.quiz-dob-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 29px;
    letter-spacing: 1%;
    text-align: center;
    color: #888;
    margin-top: 8px;
    margin-bottom: 0;
    
}

/* --- State/City Fields --- */
.quiz-statecity-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    margin: 32px 0 0 0;
    width: 100%;
}
.quiz-statecity-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 340px;
    max-width: 100%;
    margin-bottom: 0;
}
.quiz-statecity-field label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #222;
    margin-bottom: 6px;
}
.quiz-statecity-field .quiz-input, .quiz-statecity-field select.quiz-input {
    width: 100%;
    background: #f5f8f5;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #222;
    padding: 16px 18px;
    margin-bottom: 0;
    box-sizing: border-box;
    appearance: none;
    opacity: 0.5;
}
.quiz-statecity-field select.quiz-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    }
    .quiz-input{
        opacity: 0.5;
    }


/* --- Gender Option Row Layout  */
.quiz-gender-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.quiz-gender-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    object-fit: cover;
}
.quiz-gender-label {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin: 0 0 0 0;
    flex: 1;
}

@media (max-width: 600px) {
    .quiz-gender-row {
        width: 98vw;
        min-width: 0;
        max-width: 98vw;
        padding: 0 8px;
        gap: 16px;
    }
    .quiz-gender-img {
        width: 40px;
        height: 40px;
    }
}

/* --- Quiz Validation Error (centered box and text, rectangular, red border) --- */
.quiz-validation-error {
    display: block;
    background: #fbeaea;
    color: #c00;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border-radius: 6px;
    padding: 10px 18px;
    margin: 0 auto 18px auto;
    text-align: center;
    max-width: 320px;
    letter-spacing: 0.5px;
    border-left: 4px solid #d13a3a;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 2;
}

.quiz-card > .quiz-validation-error {
    margin-top: 32px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .quiz-validation-error {
        max-width: 98vw;
        margin-left: auto;
        margin-right: auto;
        padding: 8px 10px;
        font-size: 13px;
    }
    .quiz-card > .quiz-validation-error {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Vertically center the question content in the quiz card */
.quiz-card-inner-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 600px;
    width: 100%;
}

.quiz-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 700px) {
    .quiz-card-inner-vertical {
        min-height: 400px;
    }
}

/* --- Quiz Required Asterisk --- */
.quiz-required-asterisk {
    color: #d13a3a;
    font-weight: bold;
    margin-left: 6px;
    font-size: 1.2em;
    vertical-align: super;
}

/* --- Quiz Logo --- */
.quiz-logo {
   
    width: 120px;
    z-index: 3;
    margin: 15px 0px;
    position: absolute;
   right: 85%;
}

/* --- Quiz Graph Labels --- */
.quiz-graph-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 320px;
    max-width: 100%;
}

.quiz-graph-labels {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 20px;
    z-index: 2;
}

.quiz-graph-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0E2767;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #e0ede0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quiz-graph-label-today {
    position: absolute;
    left: 30px;
    top: -10px;
   border-radius: 15px;
    transform-origin: center;
}

.quiz-graph-label-goal {
    position: absolute;
    right: 26px;
    top: 80px;
   border-radius: 15px;
    transform-origin: center;
}

.quiz-graph-image {
    width: 320px;
    max-width: 100%;
    margin-bottom: 18px;
}

/* @media (max-width: 600px) {
    .quiz-logo {
        width: 80px;
        top: 16px;
        left: 16px;
    }
} */

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* .about-page {
    background-color: #FFFFFC;
    min-height: 100vh;
    padding: 40px 20px;
}

.about-header {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.about-header-box {
    background: #fff;
    border: 2px solid #0E2767;
    border-radius: 8px;
    padding: 20px 40px;
    text-align: center;
} */

.about-title {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #0E2767;
    margin: 32px 0 40px 0;
}

.about-content-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.about-text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text-block {
    margin-bottom: 30px;
}

.about-section-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #4b7c4b;
    margin-bottom: 5px;
    line-height: 1.3;
}

.about-section-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.about-image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.about-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.about-main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-image-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-view-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

/* Responsive Design for About Page */

/* Large Tablet - 1200px and below */
@media (max-width: 1200px) {
    .about-page {
        padding: 30px 20px;
    }
    
    .about-title {
        font-size: 48px;
        margin: 28px 0px 35px 0px;
    }
    
    .about-content-wrapper {
        flex-direction: column;
        gap: 50px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .about-text-section {
        gap: 40px;
        width: 100%;
        order: 2;
    }
    
    .about-section-title {
        font-size: 28px;
        margin-bottom: 18px;
    }
    
    .about-section-text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .about-image-section {
        width: 100%;
        display: flex;
        justify-content: center;
        order: 1;
    }
    
    .about-image-container {
        width: 100%;
        max-width: 600px;
    }
    
    .about-main-image {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
    
    .about-profile-section {
        margin-top: 50px;
        padding: 0 20px;
    }
    
    .about-profile-card {
        max-width: 100%;
    }
    
    .about-profile-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
    
    .about-profile-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .about-doctor-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        margin: 0 auto;
    }
    
    .about-doctor-name {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .about-doctor-bio p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 20px 15px;
    }
    
    .about-header {
        margin-bottom: 40px;
    }
    
    .about-header-box {
        padding: 15px 25px;
    }
    
    .about-title {
        font-size: 32px;
        margin: 0px 0px -20px 0px;
    }
    
    .about-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-text-section {
        gap: 30px;
    }
    
    .about-section-title {
        font-size: 1.5rem;
    }
    
    .about-section-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    /* Washington DC Image - Small Mobile */
    .DC {
        width: 40%;
        height: auto;
    }
    
    .about-page {
        padding: 15px 10px;
    }
    
    .about-header-box {
        padding: 12px 20px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-content-wrapper {
        gap: 30px;
    }
    
    .about-text-section {
        gap: 25px;
    }
    
    .about-section-title {
        font-size: 1.3rem;
    }
    
    .about-section-text {
        font-size: 0.9rem;
    }
    
    .about-image-icon {
        top: 10px;
        right: 10px;
        padding: 6px;
    }
    
    .about-view-icon {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   DR. MODEST NDANGOH PROFILE SECTION
   ======================================== */

.about-profile-section {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.about-profile-icon {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}


.about-profile-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 1000px;
}

.about-profile-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-profile-image {
    flex: 0 0 300px;
}

.about-doctor-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-profile-text {
    flex: 1;
}

.about-doctor-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4b7c4b;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-doctor-bio {
    font-family: 'Open Sans', sans-serif;
}

.about-doctor-bio p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.about-doctor-bio p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Profile Section */
@media (max-width: 768px) {
    .about-profile-section {
        margin-top: 60px;
        padding: 0 15px;
    }
    
    .about-profile-icon {
        margin-bottom: 30px;
    }
    
    .about-medical-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-profile-card {
        padding: 30px 20px;
    }
    
    .about-profile-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .about-profile-image {
        flex: none;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .about-doctor-name {
        font-size: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-profile-section {
        margin-top: 40px;
        padding: 0 10px;
    }
    
    .about-profile-icon {
        margin-bottom: 20px;
    }
    
    .about-medical-icon {
        width: 50px;
        height: 50px;
    }
    
    .about-profile-card {
        padding: 20px 15px;
    }
    
    .about-profile-content {
        gap: 20px;
    }
    
    .about-profile-image {
        max-width: 200px;
    }
    
    .about-doctor-name {
        font-size: 1.3rem;
    }
    
    .about-doctor-bio p {
        font-size: 0.95rem;
    }
}

/* ========================================
   PRICING AND VISITS PAGE RESPONSIVE STYLES
   Mobile responsive from 1024px and below
   ======================================== */

/* Tablet Styles - 1024px to 1100px */
@media (max-width: 1100px) and (min-width: 1024px) {
    /* ========================================
       GRADIENT BLINK TEXT - TABLET MARGIN
       ======================================== */
    .gradient-blink-text {
        margin-top: 0px !important;
    }
    .appointment-details-section{
        margin: 0px;
    }
}

/* Mobile Styles - Below 1024px (Responsive) */
@media (max-width: 1023px) {
    /* ========================================
       TREATMENT OPTIONS SECTION - MOBILE RESPONSIVE
       ======================================== */
    .treatment-options-center-row {
        flex-direction: column !important;
        gap: 24px !important;
        align-items: center !important;
    }
    .appointment-details-inner{
       gap: 0px;
    }
    
    .treatment-options-img-col {
        order: 1 !important;
        width: 100%;
        max-width: 400px;
        display: flex;
        justify-content: center;
    }
    
    .treatment-options-content-col {
        order: 2 !important;
        width: 85%;
       
    }
    
    .treatment-options-img {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 12px;
        object-fit: contain;
    }
    
    /* ========================================
       PRICING VISITS SECTION - MOBILE RESPONSIVE
       ======================================== */
    .pricing-visits-section {
        flex-direction: column !important;
        align-items: center !important;
        gap: 24px !important;
        margin: 40px 0 !important;
        padding: 0 15px;
    }
    
    .visit-card-static {
        width: 70% !important;
        max-width: 400px !important;
        padding: 24px 20px 20px 20px !important;
    }
    
    .visit-card-static h2 {
        font-size: 24px !important;
        margin-bottom: 14px !important;
    }
    
    .visit-card-static img {
        height: 140px !important;
        
        object-fit: contain !important;
        width: 100% !important;
    }
    
    .visit-card-static > div:first-of-type {
        font-size: 16px !important;
        margin-bottom: 14px !important;
    }
    
    .visit-card-static > div:nth-of-type(2) {
        gap: 12px !important;
        margin-bottom: 24px !important;
    }
    
    .visit-card-static > div:nth-of-type(2) > div {
        padding: 6px 14px !important;
        font-size: 14px !important;
    }
    
    .visit-card-static > div:nth-of-type(2) > div img {
        width: 18px !important;
        height: 18px !important;
        object-fit: contain !important;
    }
    
    .visit-card-static button {
        font-size: 16px !important;
        padding: 12px 24px !important;
        min-width: 180px !important;
    }
    
    /* ========================================
       TREATMENT OPTIONS SECTION - MOBILE RESPONSIVE
       ======================================== */
    .treatment-options-section {
        padding: 40px 15px;
    }
    
    .treatment-options-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .treatment-options-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .treatment-options-list {
        margin-bottom: 20px;
    }
    
    .treatment-options-list li {
        font-size: 13px;
        margin-bottom: 12px;
        gap: 8px;
    }
    
    .treatment-options-check {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    .treatment-options-check img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .treatment-options-quote {
        font-size: 13px;
        line-height: 1.5;
        padding: 16px;
        border-radius: 8px;
    }
    
    /* ========================================
       APPOINTMENT DETAILS SECTION - MOBILE RESPONSIVE
       ======================================== */
    .appointment-details-section {
        margin: 60px 0 0 0;
        padding: 0 15px;
    }
    
    .appointment-details-inner {
        flex-direction: column !important;
        align-items: center !important;
        gap: 24px !important;
        max-width: 100%;
    }
    
    .appointment-details-left {
        flex: none !important;
        width: 100% !important;
        justify-content: center !important;
        min-width: auto !important;
    }
    
    .appointment-details-title {
        font-size: 32px !important;
        text-align: center !important;
        line-height: 1.2 !important;
        padding: 0px 40px;
    }
    
    .appointment-details-right {
        flex: none !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .appointment-details-cards {
        width: 100% !important;
        /* max-width: 100% !important; */
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: none !important;
        gap: 16px !important;
    }
    
    .appointment-card {
        padding: 16px 12px 12px 12px !important;
        min-height: auto !important;
    }
    
    .appointment-card-title {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }
    
    .appointment-card-desc {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    
    .appointment-card-img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }
    
    .appointment-card-price-title {
        font-size: 14px !important;
        line-height: 1.3 !important;
    }
    
    .appointment-card-price {
        font-size: 20px !important;
    }
    
    .appointment-details-blink-wrapper {
        margin-top: 20px !important;
        justify-content: center !important;
    }
    
    .gradient-blink-text {
        font-size: 13px !important;
        line-height: 1.4 !important;
        text-align: center !important;
        margin: 0px !important;
    }
}

/* Small Mobile Styles - Below 480px */
@media (max-width: 480px) {
    /* ========================================
       PRICING VISITS SECTION - SMALL MOBILE
       ======================================== */
    .pricing-visits-section {
        margin: 30px 0 !important;
        padding: 0 10px;
    }
    
    .visit-card-static {
        max-width: 100% !important;
        padding: 20px 16px 16px 16px !important;
    }
    
    .visit-card-static h2 {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }
    
    .visit-card-static img {
        height: 120px !important;
      
        object-fit: contain !important;
        width: 100% !important;
    }
    
    .visit-card-static > div:first-of-type {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }
    
    .visit-card-static > div:nth-of-type(2) {
        gap: 8px !important;
        margin-bottom: 20px !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .visit-card-static > div:nth-of-type(2) > div {
        padding: 5px 12px !important;
        font-size: 12px !important;
    }
    
    .visit-card-static button {
        font-size: 14px !important;
        padding: 10px 20px !important;
        min-width: 160px !important;
    }
    
    /* ========================================
       TREATMENT OPTIONS SECTION - SMALL MOBILE
       ======================================== */
    .treatment-options-section {
        padding: 30px 10px;
    }
    
    .treatment-options-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .treatment-options-center-row {
        gap: 20px !important;
    }
    
    .treatment-options-img-col {
        max-width: 80%;
    }
    
    .treatment-options-img {
        max-width: 100%;
        object-fit: contain;
    }
    
    .treatment-options-desc {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .treatment-options-list li {
        font-size: 12px;
        margin-bottom: 10px;
        gap: 6px;
    }
    
    .treatment-options-check {
        width: 14px;
        height: 14px;
    }
    
    .treatment-options-quote {
        font-size: 12px;
        padding: 12px;
    }
    
    /* ========================================
       APPOINTMENT DETAILS SECTION - SMALL MOBILE
       ======================================== */
    .appointment-details-section {
        margin: 40px 0 0 0;
        padding: 0 10px;
    }
    
    .appointment-details-inner {
        gap: 20px !important;
    }
    
    .appointment-details-title {
        font-size: 28px !important;
    }
    
    .appointment-details-cards {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    
    .appointment-card {
        padding: 12px 10px 10px 10px !important;
    }
    
    .appointment-card-title {
        font-size: 14px !important;
        margin-bottom: 6px !important;
    }
    
    .appointment-card-desc {
        font-size: 12px !important;
    }
    
    .appointment-card-img {
        height: 100px !important;
        object-fit: cover !important;
    }
    
    .appointment-card-price-title {
        font-size: 12px !important;
    }
    
    .appointment-card-price {
        font-size: 18px !important;
    }
    
    .appointment-details-blink-wrapper {
        margin-top: 16px !important;
    }
    
    .gradient-blink-text {
        font-size: 12px !important;
        margin: 0px !important;
    }
}

/* ========================================
   INDEX PAGE RESPONSIVE STYLES
   Hero, Features, Mission, Visit Options Sections
   ======================================== */

/* Tablet - 1200px and below */
@media (max-width: 1200px) {
    /* Features Section */
    .features-section {
        padding: 40px 20px;
    }
    
    .features-inner {
        padding: 40px 20px;
        height: auto;
    }
    
    .features-row {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .features-col-left {
        order: 1;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }
    
    .features-col-right {
        order: 2;
        max-width: 100%;
        width: 100%;
    }
    
    .features-title {
        font-size: 30px;
        margin-bottom: 18px;
    }
    
    .feature-item {
        gap: 12px;
        margin-bottom: 18px;
        width: 100%;
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
    }
    
    .feature-title {
        font-size: 14px;
    }
    
    .feature-desc {
        font-size: 11px;
    }
    
    /* Mission Section */
    .mission-section {
        margin: 60px auto 0 auto;
        padding: 0 20px 60px 20px;
    }
    
    .mission-title {
        font-size: 40px;
        margin-bottom: 30px;
    }
    
    .mission-image {
        max-width: 100%;
        
    }
    
    .mission-card {
        flex-direction: column;
        gap: 0px;
        max-width: 100%;
        width: 100%;
    }
    
    .mission-card-left {
        order: 1;
        text-align: center;
        width: 100%;
        border-bottom-left-radius: 0;
        align-items: center;
       padding: 15px;
    }
    
    .mission-card-right {
        order: 2;
        width: 100%;
        padding: 20px 30px;
    }
    
    .mission-card-highlight {
        font-size: 20px;
       
    }
    
    .mission-card-right p {
        font-size: 14px;
        text-align: center;
    }
}

/* Large Tablet - 1200px to 1025px */
@media (max-width: 1200px) and (min-width: 1025px) {
    /* Hero Section */
    .hero-section {
        padding: 40px 30px 50px 30px;
    }
    .mission-card-left {
        padding: 30px;
    }
    .mission-card-right {
        height: 100%;
    }
    .hero-title {
        font-size: 44px;
        margin-bottom: 22px;
    }
    
    .hero-description {
        font-size: 17px;
        margin-bottom: 30px;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    /* Features Section */
    .features-section {
        padding: 50px 30px;
    }
    
    .features-inner {
        padding: 50px 30px;
        height: auto;
    }
    
    .features-title {
        font-size: 38px;
        margin-bottom: 22px;
    }
    
    .feature-item {
        gap: 15px;
        margin-bottom: 22px;
    }
    
    .feature-icon {
        width: 23px;
        height: 23px;
    }
    
    .feature-title {
        font-size: 15px;
    }
    
    .feature-desc {
        font-size: 13px;
    }
    
    /* Mission Section */
    .mission-section {
        margin: 75px auto 0 auto;
        padding: 0 30px 75px 30px;
    }
    
    .mission-title {
        font-size: 44px;
        margin-bottom: 38px;
    }
    
    .mission-image {
        max-width: 100%;
       
    }
    
    .mission-card {
        gap: 0px;
        max-width: 900px;
    }
    
    .mission-card-highlight {
        font-size: 22px;
    }
    
    .mission-card-right p {
        font-size: 15px;
    }
    
    /* Visit Options Section */
    .visit-options-section {
        margin: 75px auto 0 auto;
        padding: 0 30px 75px 30px;
    }
    
    .visit-options-title {
        font-size: 33px;
        margin-bottom: 22px;
    }
    
    .visit-options-desc {
        font-size: 17px;
        margin-bottom: 38px;
    }
    
    .visit-options-row {
        gap: 28px;
    }
    
    .visit-card {
        height: 360px !important;
        overflow: hidden;
    }
    
    .visit-card-front {
        padding: 28px;
    }
    .visit-card-back{
        padding: 28px;
       
    }
    
    .visit-card-title {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .visit-card-image {
        max-width: 100%;
    }
    
    .visit-card-back-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .visit-card-back-list li {
        font-size: 13px;
        margin-bottom: 6px;
        line-height: 1.3;
    }
}

/* Tablet - 1024px to 769px */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Hero Section */
    .hero-section {
        padding: 35px 25px 45px 25px;
    }
    
    .hero-title {
        font-size: 38px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 27px;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    /* Features Section */
    .features-section {
        padding: 45px 25px;
    }
    
    .features-inner {
        padding: 45px 25px;
        height: auto;
    }
    
    .features-title {
        font-size: 34px;
        margin-bottom: 20px;
    }
    
    .feature-item {
        gap: 13px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 23px;
        height: 23px;
    }
    
    .feature-title {
        font-size: 14px;
    }
    
    .feature-desc {
        font-size: 12px;
    }
    
    /* Mission Section */
    .mission-section {
        margin: 65px auto 0 auto;
        padding: 0 25px 65px 25px;
    }
    
    .mission-title {
        font-size: 38px;
        margin-bottom: 35px;
    }
    
    .mission-image {
        max-width: 100%;
    
    }
    
    .mission-card {
        gap: 0px;
        max-width: 100%;
    }
    
    .mission-card-highlight {
        font-size: 20px;
    }
    
    .mission-card-right p {
        font-size: 14px;
    }
    
    /* Visit Options Section */
    .visit-options-section {
        margin: 65px auto 0 auto;
        padding: 0 25px 50px 25px;
    }
    
    .visit-options-title {
        font-size: 29px;
        margin-bottom: 20px;
    }
    
    .visit-options-desc {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    .visit-options-row {
        gap: 25px;
    }
    
    .visit-card {
        height: 320px !important;
    }
    
    .visit-card-front {
        padding: 25px;
    }
    .visit-card-back {
        padding: 25px;
       
    }
    
    .visit-card-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .visit-card-image {
        max-width: 100%;
    }
    
    .visit-card-back-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .visit-card-back-list li {
        font-size: 12px;
        margin-bottom: 5px;
        line-height: 1.2;
    }
}

/* Mobile - 768px to 481px */
@media (max-width: 768px) and (min-width: 481px) {
    /* Hero Section */
    .hero-section {
        padding: 30px 20px 40px 20px;
    }
    
    .hero-row {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .hero-col-left {
        order: 1;
        text-align: center;
        padding-right: 0;
        max-width: 100%;
    }
    
    .hero-col-right {
        order: 2;
        padding-left: 0;
        display: flex;
        justify-content: center;
        max-width: 100%;
    }
    
    .hero-image-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 18px;
    }
    
    .hero-description {
        font-size: 13px;
        margin-bottom: 24px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        line-height: 1.6;
    }
    
    .hero-image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    /* Badge responsive fixes */
    .badge, .hero-badge {
        padding: 6px 20px;
        font-size: 13px;
        margin-bottom: 18px;
        max-width: 100%;
        word-wrap: break-word;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
    
    /* Features Section */
    .features-section {
        padding: 40px 20px;
    }
    
    .features-inner {
        padding: 40px 20px;
        height: auto;
    }
    
    .features-title {
        font-size: 30px;
        margin-bottom: 18px;
    }
    
    .feature-item {
        gap: 12px;
        margin-bottom: 18px;
    }
    
    .feature-icon {
        width: 23px;
        height: 23px;
    }
    
    .feature-title {
        font-size: 13px;
    }
    
    .feature-desc {
        font-size: 11px;
    }
    
    /* Mission Section */
    .mission-section {
        margin: 55px auto 0 auto;
        padding: 0 20px 55px 20px;
    }
    
    .mission-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .mission-image {
        max-width: 100%;
       
    }
    
    .mission-card {
        gap: 0px;
        max-width: 700px;
    }
    
    .mission-card-highlight {
        font-size: 18px;
    }
    
    .mission-card-right p {
        font-size: 13px;
    }
    
    /* Visit Options Section */
    .visit-options-section {
        margin: 55px auto 0 auto;
        padding: 0 20px 55px 20px;
    }
    
    .visit-options-title {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .visit-options-desc {
        font-size: 13px;
        margin-bottom: 30px;
    }
    
    .visit-options-row {
        gap: 22px;
    }
    
    .visit-card {
        height: 370px !important;
    }
    
    .visit-card:focus-within {
        height: 490px;
    }
    
    .visit-card-front, .visit-card-back {
        padding: 15px;
    }
    
    .visit-card-back {
        overflow: hidden;
    }
    
    .visit-card-title {
        font-size: 18px;
        margin-bottom: 14px;
    }
    
    .visit-card-image {
        max-width: 100%;
        width : 100% !important;
        height: 100% !important;
        border-radius: 10px !important;
    }
    
    .visit-card-back-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .visit-card-back-list li {
        font-size: 11px;
        margin-bottom: 4px;
        line-height: 1.2;
    }
}

/* Small Mobile - 500px and below */
@media (max-width: 500px) {
    .visit-card {
        height: 385px !important;
    }
}

/* Small Mobile - 375px to 320px */
@media (max-width: 375px) and (min-width: 320px) {
    .visit-card {
        height: 420px !important;
    }
    
    .visit-card-front, .visit-card-back {
        padding: 8px;
    }
    
    .visit-card-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .visit-card-image {
        max-width: 100%;
        height: 100%;
    }
    
    .visit-card-back-title {
        font-size: 11px;
        margin-bottom: 3px;
    }
    
    .visit-card-back-list li {
        font-size: 9px;
        margin-bottom: 2px;
        line-height: 1.1;
    }
}

/* Small Mobile - 480px to 321px */
@media (max-width: 480px) and (min-width: 321px) {
    /* Hero Section */
    .hero-section {
        padding: 25px 15px 35px 15px;
    }
    
    .hero-row {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .hero-col-left {
        order: 1;
        text-align: center;
        padding-right: 0;
        max-width: 100%;
    }
    
    .hero-col-right {
        order: 2;
        padding-left: 0;
        display: flex;
        justify-content: center;
        max-width: 100%;
    }
    
    .hero-image-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 12px;
        margin-bottom: 22px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        line-height: 1.6;
    }
    
    .hero-image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    /* Badge responsive fixes */
    .badge, .hero-badge {
        padding: 5px 16px;
        font-size: 12px;
        margin-bottom: 16px;
        max-width: 100%;
        word-wrap: break-word;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    
    /* Features Section */
    .features-section {
        padding: 35px 15px;
    }
    
    .features-inner {
        padding: 35px 15px;
        height: auto;
    }
    
    .features-title {
        font-size: 26px;
        margin-bottom: 16px;
    }
    
    .feature-item {
        gap: 10px;
        margin-bottom: 16px;
    }
    
    .feature-icon {
        width: 22px;
        height: 22px;
    }
    
    .feature-title {
        font-size: 12px;
    }
    
    .feature-desc {
        font-size: 10px;
    }
    
    /* Mission Section */
    .mission-section {
        margin: 45px auto 0 auto;
        padding: 0 15px 45px 15px;
    }
    
    .mission-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .mission-image {
        max-width: 100%;
       
    }
    
    .mission-card {
        gap: 0px;
        max-width: 600px;
    }
    
    .mission-card-highlight {
        font-size: 16px;
    }
    
    .mission-card-right p {
        font-size: 12px;
    }
    
    /* Visit Options Section */
    .visit-options-section {
        margin: 45px auto 0 auto;
        padding: 0 15px 45px 15px;
    }
    
    .visit-options-title {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .visit-options-desc {
        font-size: 12px;
        margin-bottom: 25px;
    }
    
    .visit-options-row {
        gap: 18px;
    }
    
    .visit-card {
        height: 375px !important;
    }
    
    .visit-card:focus-within {
        height: 490px;
    }
    
    .visit-card-front, .visit-card-back {
        padding: 12px;
    }
    
    .visit-card-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .visit-card-image {
        max-width: 100%;
        height: 100%;
    }
    
    .visit-card-back-title {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .visit-card-back-list li {
        font-size: 10px;
        margin-bottom: 3px;
        line-height: 1.1;
    }
}

/* Tiny Mobile - 320px and below */
@media (max-width: 320px) {
    /* Washington DC Image - Tiny Mobile */
    .DC {
        width: 35%;
        height: auto;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 20px 12px 30px 12px;
    }
    
    .hero-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .hero-col-left {
        order: 1;
        text-align: center;
        padding-right: 0;
        max-width: 100%;
    }
    
    .hero-col-right {
        order: 2;
        padding-left: 0;
        display: flex;
        justify-content: center;
        max-width: 100%;
    }
    
    .hero-image-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 14px;
    }
    
    .hero-description {
        font-size: 11px;
        margin-bottom: 20px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        line-height: 1.6;
    }
    
    .hero-image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    /* Badge responsive fixes */
    .badge, .hero-badge {
        padding: 4px 12px;
        font-size: 11px;
        margin-bottom: 14px;
        max-width: 100%;
        word-wrap: break-word;
        white-space: normal;
        text-align: center;
        line-height: 1.5;
    }
    
    /* Features Section */
    .features-section {
        padding: 30px 12px;
    }
    
    .features-inner {
        padding: 30px 12px;
        height: auto;
    }
    
    .features-title {
        font-size: 22px;
        margin-bottom: 14px;
    }
    
    .feature-item {
        gap: 8px;
        margin-bottom: 14px;
    }
    
    .feature-icon {
        width: 20px;
        height: 20px;
    }
    
    .feature-title {
        font-size: 11px;
    }
    
    .feature-desc {
        font-size: 9px;
    }
    
    /* Mission Section */
    .mission-section {
        margin: 35px auto 0 auto;
        padding: 0 12px 35px 12px;
    }
    
    .mission-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .mission-image {
        max-width: 100%;
      
    }
    
    .mission-card {
        gap: 0px;
        max-width: 500px;
    }
    
    .mission-card-highlight {
        font-size: 14px;
    }
    
    .mission-card-right p {
        font-size: 11px;
    }
    
    /* Visit Options Section */
    .visit-options-section {
        margin: 35px auto 0 auto;
        padding: 0 12px 35px 12px;
    }
    
    .visit-options-title {
        font-size: 20px;
        margin-bottom: 14px;
    }
    
    .visit-options-desc {
        font-size: 11px;
        margin-bottom: 20px;
    }
    
    .visit-options-row {
        gap: 15px;
    }
    
    .visit-card {
        height: 200px !important;
    }
    
    .visit-card:focus-within {
        height: 490px;
    }
    
    .visit-card-front, .visit-card-back {
        padding: 10px;
    }
    
    .visit-card-back {
        overflow: hidden;
    }
    
    .visit-card-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .visit-card-image {
        max-width: 100%;
    }
    
    .visit-card-back-title {
        font-size: 11px;
        margin-bottom: 3px;
    }
    
    .visit-card-back-list li {
        font-size: 9px;
        margin-bottom: 2px;
        line-height: 1.1;
    }
}

/* ========================================
   QUIZ PAGE RESPONSIVE STYLES
   Comprehensive responsive design for all devices
   ======================================== */

/* Tablet - 1200px and below */
@media (max-width: 1200px) {
    .quiz-root {
        min-height: 75vh;
        margin-top: 45px;
    }
    
    .quiz-card {
        width: 680px;
        min-height: 680px;
        padding: 40px 30px;
        margin-top: 50px;
    }
    
    .quiz-title {
        font-size: 2rem;
        margin-bottom: 24px;
    }
    
    .quiz-desc {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 24px;
    }
    
    .quiz-content-inner {
        width: 480px;
    }
    
    .quiz-option {
        width: 300px;
        padding: 14px 12px;
        font-size: 16px;
    }
    
    .quiz-gender-img {
        width: 60px;
        height: 60px;
    }
    
    .quiz-gender-label {
        font-size: 20px;
    }
    
    .quiz-hw-field {
        min-width: 160px;
    }
    
    .quiz-hw-input-group {
        width: 160px;
    }
    
    .quiz-statecity-field {
        width: 300px;
    }
    
    .quiz-btn-row {
        gap: 28px;
        margin-top: 28px;
    }
    
    .quiz-btn-row .btn-primary, .quiz-btn-row .btn-quiz-previous {
        height: 48px !important;
        font-size: 17px !important;
    }
}

/* Large Tablet - 1200px and below */
@media (max-width: 1200px) {
    /* Hero Section */
    .hero-section {
        padding: 35px 30px 45px 30px;
    }
    
    .hero-row {
        flex-direction: column;
        gap: 0px;
        align-items: center;
    }
    
    .hero-col-left {
        order: 1;
        text-align: center;
        padding-right: 0;
        max-width: 100%;
    }
    
    .hero-col-right {
        order: 2;
        padding-left: 0;
        display: flex;
        justify-content: center;
        max-width: 100%;
    }
    
    .hero-image-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 28px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        line-height: 1.6;
    }
    
    .hero-image {
        
        width: 80%;
        height: auto;
    }
    
    /* Badge responsive fixes */
    .badge, .hero-badge {
        padding: 8px 20px;
        font-size: 12px;
        margin-bottom: 20px;
        max-width: 100%;
        word-wrap: break-word;
        white-space: normal;
        text-align: center;
    }
}

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .quiz-logo {
        display: block;
        width: 120px;
        height: auto;
        margin: 25px auto 30px auto;
    }
    
    .quiz-graph-container {
        width: 280px;
    }
    
    .quiz-graph-labels {
        top: -22px;
    }
    
    .quiz-graph-label {
        font-size: 13px;
        padding: 3px 6px;
    }
    
    .quiz-graph-label-today {
        position: absolute;
        left: 30px;
        top: -10px;
        border-radius: 15px;
        transform-origin: center;
    }
    
    .quiz-graph-label-goal {
        position: absolute;
        right: 24px;
        top: 76px;
        border-radius: 15px;
        transform-origin: center;
    }
    
    .quiz-graph-image {
        width: 280px;
    }
    
    .quiz-root {
        min-height: 70vh;
        margin-top: 45px;
    }
    
    .quiz-card {
        width: 500px;
        min-height: 600px;
        padding: 35px 25px;
    }
    
    .quiz-title {
        font-size: 1.8rem;
        margin-bottom: 22px;
    }
    
    .quiz-desc {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 22px;
    }
    
    .quiz-content-inner {
        width: 420px;
    }
    
    .quiz-option {
        width: 280px;
        padding: 12px 12px;
        font-size: 15px;
    }
    
    .quiz-gender-img {
        width: 56px;
        height: 56px;
    }
    
    .quiz-gender-label {
        font-size: 18px;
    }
    
    .quiz-hw-field {
        min-width: 140px;
    }
    
    .quiz-hw-input-group {
        width: 140px;
    }
    
    .quiz-statecity-field {
        width: 280px;
    }
    
    .quiz-btn-row {
        gap: 24px;
        margin-top: 24px;
    }
    
    .quiz-btn-row .btn-primary, .quiz-btn-row .btn-quiz-previous {
        height: 46px !important;
        font-size: 16px !important;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    .quiz-logo {
        display: block;
        width: 100px;
        height: auto;
        margin:25px  auto 25px auto;
    }
    
    .quiz-graph-container {
        width: 100%;
        max-width: 95vw;
    }
    
    .quiz-graph-labels {
        top: -20px;
    }
    
    .quiz-graph-label {
        font-size: 12px;
        padding: 2px 5px;
    }
    
    .quiz-graph-label-today {
        position: absolute;
        left: 57px;
        top: -8px;
        border-radius: 15px;
        transform-origin: center;
    }
    
    .quiz-graph-label-goal {
        position: absolute;
        right: 50px;
        top: 114px;
        border-radius: 15px;
        transform-origin: center;
    }
    
    .quiz-graph-image {
        width: 100%;
        max-width: 95vw;
    }
    
    .quiz-root {
        min-height: 65vh;
        margin-top: 0;
        padding: 0px 20px;
    }
    
    .quiz-card {
        width: 100%;
        max-width: 95vw;
        min-height: 550px;
        padding: 30px 20px;
    }
    
    .quiz-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .quiz-desc {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    
    .quiz-content-inner {
        width: 100%;
        max-width: 100%;
    }
    
    .quiz-option {
        width: 100%;
        max-width: 100%;
        padding: 27px 85px;
        font-size: 14px;
    }
    
    .quiz-gender-img {
        width: 48px;
        height: 48px;
    }
    
    .quiz-gender-label {
        font-size: 16px;
    }
    
    .quiz-hw-row {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .quiz-hw-field {
        min-width: 100%;
        max-width: 100%;
    }
    
    .quiz-hw-input-group {
        width: 100%;
        max-width: 100%;
    }
    
    .quiz-statecity-field {
        width: 100%;
        max-width: 100%;
    }
    
    .quiz-btn-row {
        flex-direction: column;
        gap: 0px;
        margin-top: 20px;
    }
    
    .quiz-btn-row .btn-primary, .quiz-btn-row .btn-quiz-previous {
        width: 100%;
        height: 44px !important;
        font-size: 15px !important;
    }
    
    .quiz-progress-bar-container {
        height: 6px;
        margin-bottom: 20px;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .quiz-logo {
        display: block;
        width: 80px;
        height: auto;
        margin: 25px auto 20px auto;
    }
    
    .quiz-graph-container {
        width: 100%;
        max-width: 98vw;
    }
    
    .quiz-graph-labels {
        top: -18px;
    }
    
    .quiz-graph-label {
        font-size: 11px;
        padding: 2px 4px;
    }
    
    .quiz-graph-label-today {
        position: absolute;
        left: 59px;
        top: -6px;
        border-radius: 15px;
        transform-origin: center;
    }
    
    .quiz-graph-label-goal {
        position: absolute;
        right: 48px;
        top: 107px;
        border-radius: 15px;
        transform-origin: center;
    }
    
    .quiz-graph-image {
        width: 100%;
        max-width: 98vw;
    }
    
    .quiz-root {
        min-height: 60vh;
        margin-top: 0;
        padding: 0px 20px;
    }
    
    .quiz-card {
        width: 100%;
        max-width: 98vw;
        min-height: 500px;
        padding: 25px 15px;
    }
    
    .quiz-title {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    
    .quiz-desc {
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 18px;
    }
    
    .quiz-option {
        padding: 8px 85px;
        font-size: 13px;
    }
    
    .quiz-gender-img {
        width: 40px;
        height: 40px;
    }
    
    .quiz-gender-label {
        font-size: 14px;
    }
    
    .quiz-hw-row {
        gap: 12px;
    }
    
    .quiz-btn-row {
        gap: 0px;
        margin-top: 18px;
    }
    
    .quiz-btn-row .btn-primary, .quiz-btn-row .btn-quiz-previous {
        height: 42px !important;
        font-size: 14px !important;
    }
    
    .quiz-progress-bar-container {
        height: 5px;
        margin-bottom: 18px;
    }
    
    .quiz-validation-error {
        font-size: 12px;
        padding: 6px 10px;
        margin: 14px auto 0 auto;
        max-width: 95%;
    }
}

/* Extra Small Mobile - 460px and below */
@media (max-width: 460px) {
    .quiz-graph-label-today {
        position: absolute;
        left: 50px;
        top: -5px;
        border-radius: 15px;
        transform-origin: center;
    }
    
    .quiz-graph-label-goal {
        position: absolute;
        right: 45px;
        top: 86px;
        border-radius: 15px;
        transform-origin: center;
    }
}

/* Very Small Mobile - 400px and below */
@media (max-width: 400px) {
    .quiz-graph-label-today {
        position: absolute;
        left: 45px;
        top: -4px;
        border-radius: 15px;
        transform-origin: center;
    }
    
    .quiz-graph-label-goal {
        position: absolute;
        right: 40px;
        top: 85px;
        border-radius: 15px;
        transform-origin: center;
    }
}

/* Ultra Small Mobile - 360px and below */
@media (max-width: 360px) {
    .quiz-graph-label-today {
        position: absolute;
        left: 40px;
        top: -3px;
        border-radius: 15px;
        transform-origin: center;
    }
    
    .quiz-graph-label-goal {
        position: absolute;
        right: 35px;
        top: 75px;
        border-radius: 15px;
        transform-origin: center;
    }
}

/* Tiny Mobile - 320px and below */
@media (max-width: 320px) {
    .quiz-logo {
        display: block;
        width: 70px;
        height: auto;
        margin: 25px auto 15px auto;
    }
    
    .quiz-graph-container {
        width: 100%;
        max-width: 98vw;
    }
    
    .quiz-graph-labels {
        top: -16px;
    }
    
    .quiz-graph-label {
        font-size: 10px;
        padding: 1px 3px;
    }
    
    .quiz-graph-label-today {
        position: absolute;
        left: 15px;
        top: -4px;
        border-radius: 15px;
        transform-origin: center;
    }
    
    .quiz-graph-label-goal {
        position: absolute;
        right: 15px;
        top: 50px;
        border-radius: 15px;
        transform-origin: center;
    }
    
    .quiz-graph-image {
        width: 100%;
        max-width: 98vw;
    }
    
    .quiz-root {
        min-height: 55vh;
        margin-top: 0;
        padding: 0px 20px;
    }
    
    .quiz-card {
        width: 100%;
        max-width: 98vw;
        min-height: 450px;
        padding: 20px 12px;
    }
    
    .quiz-title {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }
    
    .quiz-desc {
        font-size: 11px;
        line-height: 18px;
        margin-bottom: 16px;
    }
    
    .quiz-option {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .quiz-gender-img {
        width: 36px;
        height: 36px;
    }
    
    .quiz-gender-label {
        font-size: 13px;
    }
    
    .quiz-hw-row {
        gap: 10px;
    }
    
    .quiz-btn-row {
        gap: 10px;
        margin-top: 16px;
    }
    
    .quiz-btn-row .btn-primary, .quiz-btn-row .btn-quiz-previous {
        height: 40px !important;
        font-size: 13px !important;
    }
    
    .quiz-progress-bar-container {
        height: 4px;
        margin-bottom: 16px;
    }
    
    .quiz-validation-error {
        font-size: 11px;
        padding: 5px 8px;
        margin: 12px auto 0 auto;
        max-width: 98%;
    }
}

/* Large Tablet - 1200px to 1025px */

/* Large Tablet - 1200px to 1025px */
