/* ===== RESET AND BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== EMR MODAL STYLES ===== */
.emr-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.emr-modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.emr-header {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.emr-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.emr-close {
    color: #fff;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.emr-close:hover {
    color: #ddd;
}

.emr-body {
    padding: 2rem;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

.emr-body p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
    text-align: center;
}

#emrContainer {
    min-height: 400px;
    display: flex;
    justify-content: center;
}

/* Mobile responsive for EMR modal */
@media screen and (max-width: 768px) {
    .emr-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
    }
    
    .emr-header {
        padding: 1rem 1.5rem;
    }
    
    .emr-header h2 {
        font-size: 1.2rem;
    }
    
    .emr-body {
        padding: 1.5rem;
    }
    
    .emr-close {
        font-size: 1.5rem;
    }
}

/* ===== NAVIGATION BAR ===== */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #2c5530;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-logo a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.nav-logo a h2 {
    color: #2c5530;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5530;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    color: #2c5530;
    font-size: 1.5rem;
    font-weight: bold;
}



/* Book Now Button in Navigation */
.book-btn {
    background-color: #2c5530;
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.book-btn:hover {
    background-color: #1a3d1e;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #FDFBF7 0%,#8B7CA6 100%);
    padding: 120px 0 80px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #2c5530;
    line-height: 1.2;
}

.highlight {
    color: #4a7c59;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.cta-primary {
    background-color: #2c5530;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary:hover {
    background-color: #1a3d1e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: #2c5530;
    padding: 1rem 2rem;
    text-decoration: none;
    border: 2px solid #2c5530;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-secondary:hover {
    background-color: #2c5530;
    color: #fff;
}

.hero-images {
    display: flex;
    justify-content: center; 
    text-align: right;
}

.hero-img-placeholder {
    width: 400px;
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}
/* ===== RESPONSIVE FIXES ===== */
/* Mobile Responsive Styles */
@media screen and (max-width: 360px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .book-btn {
        margin: 1rem 0;
        display: inline-block;
    }
}
    /* HERO SECTION */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-img-placeholder {
        width: 80%;
        height: auto;
    }


/* ===== WELCOME SECTION ===== */
.welcome-section {
    padding: 80px 0;
    background-color: #FDFBF7;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    text-align: center;
}

.beulah {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #F1A4E4;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.womens-health {
    display: block;
    font-size: 1.8rem;
    color: #8B7CA6;
    font-weight: 500;
}

.welcome-text {
    padding-left: 2rem;
}

.welcome-intro {
    color:#2c5530;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.welcome-text h1 {
    font-size: 3.5rem;
    color: #8B7CA6;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.logo-text img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}
/* .underline {
    width: 80px;
    height: 4px;
    background-color: #F1A4E4;
    margin-bottom: 2rem;
} */

.description {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2.5rem;
    text-align: justify;
    max-width: 100%;
}

/* .book-now-btn {
    background: linear-gradient(135deg, #8B7CA6 0%, #9B8BB8 100%);
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 124, 166, 0.3);
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 124, 166, 0.4);
    background: linear-gradient(135deg, #7A6B95 0%, #8A7AA7 100%);
} */


/* * Tablet (968px and below)  
@media screen and (max-width: 968px) {
    .welcome-section {
        padding: 60px 0;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .logo-circle {
        width: 250px;
        height: 250px;
    }

    .welcome-text h1 {
        font-size: 2.8rem;
    }

    .description p {
        font-size: 1.1rem;
    }
}

/* Mobile (600px and below) 
@media screen and (max-width: 600px) {
    .welcome-section {
        padding: 50px 0;
    }

    .container {
        padding: 0 15px;
    }

    .welcome-content {
        gap: 30px;
    }

    .logo-circle {
        width: 200px;
        height: 200px;
    }

    .welcome-text h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .underline {
        width: 80px;
        height: 3px;
        margin: 0 auto 25px;
    }

    .description p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }
}

/* Small Mobile (480px and below) 
@media screen and (max-width: 480px) {
    .welcome-section {
        padding: 40px 0;
    }

    .container {
        padding: 0 10px;
    }

    .welcome-content {
        gap: 25px;
    }

    .logo-circle {
        width: 180px;
        height: 180px;
    }

    .welcome-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .underline {
        width: 60px;
        margin: 0 auto 20px;
    }
    .logo-img{
        height: 30px;
    }
}


/* Extra Small Mobile (360px and below) 
@media screen and (max-width: 360px) {
    .welcome-section {
        padding: 30px 0;
    }

    .logo-circle {
        width: 150px;
        height: 150px;
    }

    .welcome-text h1 {
        font-size: 1.6rem;
    }

    .description p {
        font-size: 0.9rem;
    }
}


*/



































/* ===== EXPECTATIONS SECTION ===== */
.expectations-section {
    background: linear-gradient(135deg, #8B7CA6 0%, #9B8BB8 100%);
    padding: 80px 0;
    color: black;
}

.expectations-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.expectations-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    color: #FFFFFF;
    line-height: 1.2;
}

.expectations-list {
    list-style: none;
    padding: 0;
    margin: 1rem 1rem 1rem 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

.expectations-list li {
    position: relative;
    padding: 0.5rem 0;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.expectations-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: #FFFFFF;
    font-size: 1.5rem;
    line-height: 1;
}

.expectations-section .book-now-btn {
    background-color: #FFFFFF;
    color: #8B7CA6;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.expectations-section .book-now-btn:hover {
    background-color: #F1A4E4;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ===== APPROACH SECTION ===== */
.approach {
    padding: 80px 0;
    background-color: #fff;
}

.approach h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
    font-weight: bold;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.approach-item h3 {
    font-size: 1.3rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-item p {
    color: #666;
    line-height: 1.6;
}

/* ===== SERVICES PREVIEW SECTION ===== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Main Layout */
.membership-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
    margin-bottom: 40px;
}

/* Plan Card Styles */
.plan-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: fit-content;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.plan-card:nth-child(2) {
    animation-delay: 0.2s;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Typography */
.plan-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-top: 10px;
}

.plan-pricing {
    margin-bottom: 25px;
}

.price-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.price-highlight {
    color: #007bff;
    font-weight: 600;
}

.plan-description {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Features Section */
.features-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f3f4;
}

.features-list {
    list-style: none;
}

.feature-item {
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
    color: #555;
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 16px;
}

/* Call-to-Action Button */
.cta-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
}

.popular-plan .cta-button {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.popular-plan .cta-button:hover {
    background: linear-gradient(135deg, #1e7e34, #155724);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */

/* Mobile Phones (Portrait) */
@media (max-width: 480px) {
    .plan-card {
        padding: 20px 15px;
    }

    .plan-title {
        font-size: 20px;
    }

    .price-text {
        font-size: 15px;
    }

    .features-title {
        font-size: 16px;
    }

    .feature-item {
        font-size: 14px;
        padding: 10px 0;
    }
}

/* Tablets and Small Laptops */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    body {
        padding: 15px;
    }

    .membership-plans {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .plan-card {
        padding: 25px 20px;
    }

    .plan-title {
        font-size: 22px;
        text-align: center;
    }

    .popular-badge {
        right: 50%;
        transform: translateX(50%);
    }
}

/* Desktop and Large Tablets */
@media (min-width: 1024px) {
    .membership-plans {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 40px auto 0;
    }
}

/* Large Desktop Screens */
@media (min-width: 1200px) {
    .plan-card {
        padding: 35px;
    }
}






























.services-preview {
    padding: 80px 0;
    background-color: #FDFBF7;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    display: block;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card.featured {
    position: relative;
}

.service-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2c5530;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-card-content {
    flex-grow: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: bold;
}

.service-subtitle {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

.service-features h4 {
    color: #2c5530;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.service-features ul {
    list-style-position: inside;
    color: #555;
}

.service-features li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.service-cta {
    margin-top: auto;
    background: #14532d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: #1a3d1e;
    transform: translateY(-2px);
}


/* ===== FAQ SECTION ===== */
.faq-section {
    background: #f9fafb;
    padding: 80px 20px;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a3d2f;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #14532d;
}

.faq-question:hover {
    color: #22c55e;
}

.faq-answer {
    display: none;
    padding: 0 18px 15px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: max-height 0.5s ease, opacity 0.4s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== WHY IT WORKS SECTION ===== */
.why-works {
    padding: 80px 0;
    background-color: #FDFBF7;
}

.why-works h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 2rem;
    font-weight: bold;
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.works-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.works-item:hover {
    transform: translateY(-5px);
}

.works-item h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.works-item p {
    color: #666;
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background-color: #8B7CA6;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FDFBF7;
    margin-bottom: 3rem;
    font-weight: bold;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: #2c5530;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    padding-left: 20px;
}

/* ===== HEALTH SECTION (FINAL CTA) ===== */
.health-section {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 600px;
}

.content-side {
    flex: 1;
    background: #f8f2e8;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-side h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.content-side p {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 400;
}

.cta-button {
    background: #2d5016;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1f3a0f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 80, 22, 0.3);
}

.image-side {
    flex: 1;
    background: linear-gradient(135deg, #a8d5ba 0%, #7bb896 50%, #5a9e72 100%);
    position: relative;
    overflow: hidden;
}

.woman-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #FDFBF7;
    color:#2c5530;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #2c5530;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color:#2c5530;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8B7CA6;
}

.footer-section p {
    color: #2c5530;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a7c59;
    color:#8B7CA6;
}

.additional-services {
    background-color: #FDFBF7;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-mission {
    padding: 80px 0;
    background-color:#FDFBF7;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.image-placeholder {
    background-color:#FDFBF7;
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}

.about-story {
    padding: 0;
    background-color:#FDFBF7;
}

.about-story h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
    font-weight: bold;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-values {
    padding: 80px 0;
    background-color: #fff;
}

.about-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
    font-weight: bold;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.about-team {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
    font-weight: bold;
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.team-intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.team-specialties h3 {
    text-align: center;
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 2rem;
    font-weight: 600;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.specialty {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.specialty h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.specialty p {
    color: #666;
    line-height: 1.6;
}

.about-credentials {
    padding: 80px 0;
    background-color: #fff;
}

.about-credentials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
    font-weight: bold;
}

.credentials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.credential-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.credential-item h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.credential-item p {
    color: #666;
    line-height: 1.6;
}

.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B7CA6 0%, #FDFBF7 100%);
    color: #2c5530;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}






@media screen and (max-width: 968px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 30px;
    }

    .mission-text h2,
    .about-story h2,
    .about-values h2,
    .about-team h2,
    .about-credentials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .team-specialties h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .values-grid,
    .specialties-grid,
    .credentials-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .about-mission,
    .about-story,
    .about-values,
    .about-team,
    .about-credentials,
    .about-cta {
        padding: 60px 0;
    }

    .mission-image {
        margin: 1.5rem 0;
        padding: 0 15px;
    }
}

/* Mobile (600px and below) */
@media screen and (max-width: 600px) {
    .mission-grid {
        padding: 0 20px;
        gap: 1.5rem;
    }

    .mission-text h2,
    .about-story h2,
    .about-values h2,
    .about-team h2,
    .about-credentials h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .mission-text p,
    .story-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .team-intro p {
        font-size: 1.1rem;
    }

    .team-specialties h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .image-placeholder {
        height: 200px;
        margin-bottom: 1rem;
    }

    .value-item,
    .specialty,
    .credential-item {
        padding: 1.5rem;
    }

    .value-item h3,
    .credential-item h3 {
        font-size: 1.2rem;
    }

    .specialty h4 {
        font-size: 1.1rem;
    }

    .value-icon {
        font-size: 2.5rem;
    }

    .values-grid,
    .specialties-grid,
    .credentials-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-mission,
    .about-story,
    .about-values,
    .about-team,
    .about-credentials,
    .about-cta {
        padding: 50px 0;
    }

    .about-values .container,
    .about-team .container,
    .about-credentials .container,
    .about-cta .container {
        padding: 0 15px;
    }

    .mission-image {
        margin: 1rem 0;
        padding: 0 10px;
    }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
    .mission-text h2,
    .about-story h2,
    .about-values h2,
    .about-team h2,
    .about-credentials h2 {
        font-size: 1.5rem;
    }

    .team-specialties h3 {
        font-size: 1.3rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .mission-text p,
    .story-content p,
    .team-intro p {
        font-size: 0.95rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .value-item,
    .specialty,
    .credential-item {
        padding: 1.25rem;
    }

    .image-placeholder {
        height: 180px;
    }

    .about-mission,
    .about-story,
    .about-values,
    .about-team,
    .about-credentials,
    .about-cta {
        padding: 40px 0;
    }

    .mission-image {
        margin: 1rem 0;
        padding: 0 5px;
    }
}

.mission-image {
    position: relative;
    margin: 2rem 0;
    text-align: center;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 0 20px;
    line-height: 1.8;
    color: #555;
}























/* @media screen and (max-width: 968px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 30px;
    }

    .mission-text h2,
    .about-story h2,
    .about-values h2,
    .about-team h2,
    .about-credentials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .team-specialties h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .values-grid,
    .specialties-grid,
    .credentials-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .about-mission,
    .about-story,
    .about-values,
    .about-team,
    .about-credentials,
    .about-cta {
        padding: 60px 0;
    }
}

/* Mobile (600px and below) */
@media screen and (max-width: 600px) {
    .mission-grid {
        padding: 0 20px;
        gap: 1.5rem;
        margin-bottom: 40px;

    }

    .mission-text h2,
    .about-story h2,
    .about-values h2,
    .about-team h2,
    .about-credentials h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .mission-text p,
    .story-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .team-intro p {
        font-size: 1.1rem;
    }

    .team-specialties h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .image-placeholder {
        height: 200px;
        margin-bottom: 1rem;
    }

    .value-item,
    .specialty,
    .credential-item {
        padding: 1.5rem;
    }

    .value-item h3,
    .credential-item h3 {
        font-size: 1.2rem;
    }

    .specialty h4 {
        font-size: 1.1rem;
    }

    .value-icon {
        font-size: 2.5rem;
    }

    .values-grid,
    .specialties-grid,
    .credentials-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-mission,
    .about-story,
    .about-values,
    .about-team,
    .about-credentials,
    .about-cta {
        padding: 50px 0;
    }

    .about-values .container,
    .about-team .container,
    .about-credentials .container,
    .about-cta .container {
        padding: 0 15px;
    }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
    .mission-text h2,
    .about-story h2,
    .about-values h2,
    .about-team h2,
    .about-credentials h2 {
        font-size: 1.5rem;
    }

    .team-specialties h3 {
        font-size: 1.3rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .mission-text p,
    .story-content p,
    .team-intro p {
        font-size: 0.95rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .value-item,
    .specialty,
    .credential-item {
        padding: 1.25rem;
    }

    .image-placeholder {
        height: 180px;
    }

    .about-mission,
    .about-story,
    .about-values,
    .about-team,
    .about-credentials,
    .about-cta {
        padding: 40px 0;
    }
}
.mission-image{

     position: relative;
    margin: 2rem 0;
    text-align: center;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
     padding: 0 20px;
    line-height: 1.8;
    color: #555;
} */
/* ===== CONTACT PAGE STYLES ===== */
.contact-main {
    padding: 80px 0;
    background-color: #FDFBF7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.method-icon {
    font-size: 2rem;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.method-details h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.method-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.quick-action {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.quick-action h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.quick-action p {
    color: #666;
    margin-bottom: 1.5rem;
}

.form-container {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-container h1,
.form-container h2 {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: bold;
}

.form-container > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.form-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form,
.form-group {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group label {
    color: #2c5530;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: block;
}

.required {
    color: #dc3545;
}

.form-group input,
.form-group select,
.form-group textarea,
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #2c5530;
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.form-group textarea,
textarea {
    resize: vertical;
    min-height: 120px;
}

textarea::placeholder {
    color: #9ca3af;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-top: 2px;
    width: auto;
}

.checkbox-label a {
    color: #2c5530;
    text-decoration: underline;
}

.submit-btn,
.form-submit {
    width: 100%;
    background: #2c5530;
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover:not(:disabled),
.form-submit:hover {
    background: #1a3d1e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 85, 48, 0.3);
}

.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}




/* Responsive styles for max-width 360px */
@media (max-width: 360px) {
    .contact-main {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .contact-info > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .contact-methods {
        margin-bottom: 2rem;
    }

    .contact-method {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .method-icon {
        font-size: 1.5rem;
        margin-right: 0;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }

    .method-details h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .method-details p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.3rem;
    }

    .quick-action {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .quick-action h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .quick-action p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .form-container {
        padding: 1.5rem;
        margin: 0 10px;
    }

    .form-container h1,
    .form-container h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .form-container > p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .form-description {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .contact-form,
    .form-group {
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea,
    input[type="text"],
    input[type="email"],
    textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 6px;
    }

    .form-group textarea,
    textarea {
        min-height: 100px;
    }

    .checkbox-label {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .checkbox-label input[type="checkbox"] {
        margin-right: 0.4rem;
    }

    .submit-btn,
    .form-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin-top: 0.8rem;
    }

    /* Page header adjustments */
    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .page-header p {
        font-size: 1rem;
        padding: 0 15px;
    }

    /* EMR Modal adjustments for small screens */
    .emr-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .emr-header h2 {
        font-size: 1.3rem;
    }

    .emr-body p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    /* Form spacing adjustments */
    form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    form input,
    form textarea {
        margin-bottom: 0;
    }

    /* CTA button adjustments */
    .cta-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        display: inline-block;
        text-align: center;
    }
}



















/* Message Styles */
.message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 500;
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.error-message {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.contact-faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
    font-weight: bold;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.emergency-contact {
    padding: 60px 0;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.emergency-content {
    text-align: center;
}

.emergency-content h2 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: bold;
}

.emergency-content p {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== SERVICES PAGE STYLES ===== */



/* Container for all cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 20px;
}

/* Individual card styling */
.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 300px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    justify-self: center;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    display: block;
}

.service-card .content {
    padding: 20px;
    align-items: top;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
    padding: 0;
    line-height: 1.4;
    font-weight: 600;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    padding: 0;
    margin: 0;
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
    .services-grid {
        max-width: 1500px;
        gap: 2.5rem;
        padding: 3rem 20px;
    }
    
    .service-card {
        max-width: 320px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 1rem;
    }
}

/* Large Desktop */
@media (max-width: 1300px) {
    .services-grid {
        gap: 1.8rem;
        padding: 2rem 15px;
    }
    
    .service-card {
        max-width: 280px;
    }
}


/* Medium Desktop */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 2rem 15px;
        max-width: 1000px;
    }
    
    .service-card {
        max-width: 320px;
    }
}

/* Large Tablet */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem 15px;
        max-width: 700px;
    }
    
    .service-card {
        max-width: 350px;
    }
    
    .service-card img {
        height: 180px;
    }
    
    .service-card h3 {
        font-size: 1.05rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem 10px;
    }
    
    .service-card {
        max-width: none;
    }
    
    .service-card .content {
        padding: 15px;
    }
    
    .service-card img {
        height: 160px;
    }
    
    .service-card h3 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* Large Mobile */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 15px;
        max-width: 400px;
    }
    
    .service-card {
        max-width: none;
        margin: 0 auto;
    }
    
    .service-card img {
        height: 200px;
    }
    
    .service-card .content {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .services-grid {
        padding: 1rem 10px;
        gap: 1rem;
        max-width: 350px;
    }
    
    .service-card .content {
        padding: 15px;
    }
    
    .service-card img {
        height: 180px;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .services-grid {
        padding: 0.5rem 5px;
        max-width: 320px;
    }
    
    .service-card .content {
        padding: 12px;
    }
    
    .service-card img {
        height: 160px;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
}

/* Touch device optimization */
@media (hover: none) {
    .service-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .service-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}


































































































/* ===== GLOBAL PAGE STYLES ===== */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FDFBF7;
    color: #333;
    line-height: 1.6;
}

/* ===== SERVICES OVERVIEW SECTION ===== */
.services-overview {
    padding: 80px 20px;
    background-color: #FDFBF7;
    text-align: center;
}

.overview-content {
    max-width: 1200px;
    margin: 0 auto;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.overview-content p {
    font-size: 1.1rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== MAIN SERVICES SECTION ===== */
.main-services {
    padding: 80px 20px;
    background-color: #FDFBF7;
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-header h3 {
    font-size: 2rem;
    color: #2c5530;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-style: italic;
    color: #666;
    font-size: 1.05rem;
}

/* ===== SHARED BLOCK STYLES ===== */
.service-description,
.best-for,
.service-features,
.service-timeline,
.service-medications,
.service-cta-section {
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 0 20px;
}

.service-description p {
    color: #555;
    margin-bottom: 1rem;
}

.best-for,
.service-features li,
.timeline-item,
.medication-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.best-for h4,
.service-features h4,
.service-timeline h4,
.service-medications h4 {
    color: #2c5530;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

/* ===== LIST STYLING ===== */
.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.feature-icon {
    font-size: 1.2rem;
    color: #2c5530;
    flex-shrink: 0;
}

/* ===== TIMELINE ===== */
.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-number {
    background-color: #2c5530;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-right: 1rem;
    min-width: 70px;
    text-align: center;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ===== MEDICATIONS ===== */
.medication-item h5 {
    color: #2c5530;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.medication-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* ===== CALL TO ACTION ===== */
.service-cta-section {
    text-align: center;
}

.premium-cta {
    background-color: #2c5530;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.premium-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
}

.premium-cta:hover::before {
    left: 100%;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #8B7CA6 0%, #FDFBF7 100%);
    color: #2c5530;
    padding: 100px 20px 70px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .overview-content h2,
    .service-header h3 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .overview-content h2,
    .service-header h3 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-number {
        margin: 0 0 0.8rem 0;
    }
}

@media (max-width: 576px) {
    .overview-content h2,
    .service-header h3 {
        font-size: 1.6rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .premium-cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Mobile Menu */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .logo-text {
        display: none;
    }
    
    .logo-img {
        height: 35px;
    }

    .form-container {
        padding: 30px 20px;
        margin: 20px 10px;
    }
    
    .form-container h1 {
        font-size: 2rem;
    }
    
    .form-description {
        font-size: 1rem;
    }
}

/* Tablet and Mobile Styles */
@media screen and (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .works-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .mission-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-number {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .beulah {
        font-size: 2.5rem;
    }
    
    .womens-health {
        font-size: 1.5rem;
    }
    
    .welcome-text {
        padding-left: 0;
    }
    
    .welcome-text h1 {
        font-size: 2.8rem;
    }

    .expectations-content {
        padding: 0 30px;
    }
    
    .expectations-content h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .expectations-list {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .expectations-list li {
        padding: 0.6rem 0;
        padding-left: 1.8rem;
    }
    
    .expectations-list li::before {
        font-size: 1.3rem;
        top: 0.6rem;
    }

    .health-section {
        flex-direction: column;
        height: auto;
        border-radius: 16px;
    }

    .content-side {
        padding: 40px 30px;
    }

    .content-side h1 {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }

    .content-side p {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .image-side {
        min-height: 300px;
    }
}

@media screen and (max-width: 600px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .approach h2,
    .services-preview h2,
    .why-works h2,
    .testimonials h2,
    .final-cta h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .approach,
    .services-preview,
    .why-works,
    .testimonials,
    .final-cta {
        padding: 60px 0;
    }

    .beulah {
        font-size: 2rem;
    }
    
    .womens-health {
        font-size: 1.2rem;
    }
    
    .welcome-text h1 {
        font-size: 2.2rem;
    }
    
    .description {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .book-now-btn {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }

    .expectations-section {
        padding: 60px 0;
    }
    
    .expectations-content {
        padding: 0 20px;
    }
    
    .expectations-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .expectations-list {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .expectations-list li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .expectations-list li::before {
        font-size: 1.2rem;
        top: 0.5rem;
    }
    
    .expectations-section .book-now-btn {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }

    .content-side {
        padding: 30px 20px;
    }

    .content-side h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 25px 15px;
    }
    
    .form-container h1 {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    input[type="text"],
    input[type="email"],
    textarea {
        padding: 12px;
    }
    
    .submit-btn {
        padding: 16px 20px;
        font-size: 1rem;
    }
}