/* BASE STYLES & RESET */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #fff;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 0;
        }
        
        /* HEADINGS */
        h2 {
            font-size: 2.2em;
            font-weight: 600;
            text-align: center;
            margin-bottom: 50px;
            color: #333;
        }
        
        /* HEADER (Logo & Navigation) */
        .header {
            background-color: #fff;
            padding: 15px 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            /* Important for absolute positioning of mobile menu */
            position: sticky; 
            top: 0;
            z-index: 99;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 15px; 
        }
        
        /* NEW: Mobile Toggle Button Style */
        .menu-toggle {
            display: none; /* Hidden by default on desktop */
            background: none;
            border: none;
            font-size: 1.5em;
            color: #007bff; /* Joyride Blue */
            cursor: pointer;
            padding: 10px;
            z-index: 100;
            margin-right: -130px;
        }

        .logo {
            font-size: 1.8em;
            font-weight: 700;
            color: #007bff;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 5px;
            font-size: 1.2em;
        }

        .nav ul {
            list-style: none;
            display: flex;
        }

        .nav ul li {
            margin-left: 25px;
        }

        .nav ul li a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav ul li a:hover {
            color: #007bff;
        }
        
        /* HERO SECTION (Slider Placeholder) */
        .hero {
            height: 450px; 
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), #007bff;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-align: center;
            animation: fadeIn 1s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero-content h1 {
            font-size: 3em; /* Increased size for impact */
            margin-bottom: 10px;
        }
        
        /* BUTTONS */
        .btn {
            display: inline-block;
            padding: 10px 25px;
            border: 2px solid #007bff;
            color: #007bff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 15px;
            text-align: center;
        }
        
        .btn:hover {
            background-color: #007bff;
            color: #fff;
            transform: translateY(-2px); 
            box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
        }

        .btn-filled {
            background-color: #007bff;
            color: #fff;
            border-color: #007bff;
        }

        .btn-filled:hover {
            background-color: #0056b3;
            border-color: #0056b3;
            color: #fff;
        }
        
        /* SECTION: WHY JOYRIDE */
        .why-joyride {
            text-align: center;
            padding: 60px 0;
        }

        .features-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .feature-box {
            width: 30%;
            padding: 20px;
            text-align: center;
        }

        .feature-box i {
            font-size: 2.5em;
            color: #007bff;
            margin-bottom: 10px;
            border: 2px solid #e0e0e0;
            border-radius: 50%;
            padding: 20px;
            transition: transform 0.3s ease;
        }
        
        .feature-box:hover i {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(0, 123, 255, 0.1);
        }

        /* SECTION: OUR CARE SERVICES */
        .care-services {
            background-color: #f9f9f9;
            padding: 80px 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .service-column {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-column:hover {
            transform: translateY(-5px); 
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }
        
        .service-column h3 {
            color: #007bff;
        }

        .service-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .service-list li {
            font-size: 1em;
            color: #555;
        }
        
        .service-list li i {
            color: #28a745; 
        }
        
        /* SECTION: ABOUT JOYRIDE */
        .about-joyride .container {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 50px;
            align-items: center;
            padding: 60px 0;
        }
        
        .about-content h3 {
            font-size: 1.8em;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .about-content p {
            margin-bottom: 20px;
            color: #666;
        }

        .founder-block {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* CORRECTED: Founder Image Styling */
        .dummy-img {
            width: 120px; /* Adjusted size for clarity */
            height: 120px; /* Adjusted size for clarity */
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f0f0f0;
            border: 3px solid #007bff;
        }

        .dummy-img img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures the image fills the circle without stretching */
            display: block;
        }

        .quote-box {
            background-color: #f9f9f9;
            padding: 40px;
            border-left: 5px solid #007bff;
            border-radius: 8px; 
            font-style: italic;
            font-size: 1.2em;
            color: #333;
            position: relative;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); 
        }

        .quote-box::before {
            content: "\201C"; 
            font-size: 5em;
            color: rgba(0, 123, 255, 0.1);
            position: absolute;
            top: 5px;
            left: 10px;
            line-height: 1;
        }
        
        .quote-box footer {
            display: block;
            margin-top: 15px;
            font-size: 0.9em;
            font-style: normal;
            font-weight: 600;
            color: #555;
            text-align: right;
        }
        
        /* SECTION: CLIENTS & PAYMENT */
        .bottom-info {
            background-color: #fff;
            padding: 50px 0 80px 0;
            border-top: 1px solid #eee;
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }
        
        .map-placeholder {
            width: 100%;
            height: 150px;
            background-color: #e6f0ff; 
            border: 1px solid #cce0ff;
            margin-top: 20px;
            border-radius: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #007bff;
            font-size: 1.5em;
        }
        
        .insurance-payment h3 {
            font-size: 1.8em;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .insurance-list {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .insurance-list li {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #555;
        }

        .insurance-list li i {
            color: #28a745;
            margin-right: 10px;
            font-size: 1.1em;
        }

        /* FOOTER */
        .footer {
            background-color: #343a40;
            color: #f8f9fa;
            padding: 40px 0;
            font-size: 0.9em;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 30px;
        }

        .footer h4 {
            font-size: 1.1em;
            color: #007bff;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .footer ul {
            list-style: none;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #495057;
            margin-top: 30px;
            color: #aaa;
        }
        .footer a {
    /* Set ALL links in the footer to light gray */
    color: #fff !important; /* Use !important temporarily if necessary to debug, but try without first */
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #ccc !important; /* Change to white on hover */
}

/* Ensure the button text is also light gray */
.footer .btn {
    color: #ccc !important; 
    border-color: #ccc;
    background: transparent;
}
.footer .btn:hover {
    color: #343a40 !important; /* Dark text on white hover */
    background-color: #ccc;
}
        
        /* MEDIA QUERIES FOR RESPONSIVENESS */
        @media (max-width: 992px) {
            .services-grid, .about-joyride .container, .info-grid {
                grid-template-columns: 1fr; 
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .feature-box {
                width: 45%; 
                margin-bottom: 20px;
            }
        }

        /* MOBILE MENU IMPLEMENTATION */
        @media (max-width: 600px) {
            /* 1. Show the Toggle Button */
            .menu-toggle {
                display: block; 
            }
            
            /* 2. Hide the desktop navigation links */
            .nav ul {
                display: none; 
                flex-direction: column;
                position: absolute; 
                top: 100px; /* Position it below the header */
                left: 0;
                width: 100%;
                background-color: #fff; 
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                padding: 10px 0;
                z-index: 50;
            }
            
            /* 3. Style the Menu Items */
            .nav ul li {
                margin: 0;
                text-align: center;
                border-bottom: 1px solid #eee;
            }

            .nav ul li:last-child {
                border-bottom: none;
            }

            .nav ul li a {
                display: block; 
                padding: 15px 0;
                font-size: 1.1em;
            }
            
            /* 4. Class for showing the menu (added by JavaScript) */
            .nav.active ul {
                display: flex; 
            }

            /* Other mobile-specific layout fixes */
            .feature-box {
                width: 90%; 
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid > div {
                margin-bottom: 20px;
            }
            
            .hero-content h1 {
                font-size: 2.2em;
            }
        }
        
/* Page Header Banner */
.page-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.95;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

/* Profile Card */
.profile-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
    position: sticky;
    top: 100px;
}

.profile-image {
    width: 250px;
    height: 250px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #007bff;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card h2 {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 5px;
    font-weight: 700;
}

.credentials {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.role {
    font-size: 1em;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.certifications {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: left;
}

.certifications h4 {
    color: #007bff;
    font-size: 1em;
    margin-bottom: 12px;
    text-align: center;
}

.cert-badge {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #555;
}

.cert-badge i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.1em;
}

/* Biography Content */
.bio-content h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.bio-content p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 5px solid #007bff;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.highlight-box h4 {
    color: #007bff;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.highlight-box p {
    margin-bottom: 0;
    font-style: italic;
    color: #333;
}

/* Services Offered */
.services-offered {
    margin-top: 30px;
}

.services-offered h4 {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 20px;
    font-weight: 600;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: #e3f2fd;
    transform: translateX(5px);
}

.service-item i {
    color: #007bff;
    margin-right: 12px;
    font-size: 1.2em;
}

.service-item span {
    color: #555;
    font-size: 0.95em;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    padding: 60px 0;
    margin-top: 60px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h3 {
    color: #fff;
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background-color: #fff;
    color: #007bff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta i {
    font-size: 1.2em;
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-white:hover {
    background-color: #fff;
    color: #007bff;
}

/* Education Section */
.education-section {
    margin-top: 40px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.education-section h4 {
    color: #007bff;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 600;
}

.education-item {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.education-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.education-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.education-details h5 {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.education-details p {
    color: #666;
    font-size: 0.95em;
    margin: 0;
}

/* Active Navigation Link */
.nav ul li a.active {
    color: #007bff;
}

/* ========================================
   RESPONSIVE UPDATES FOR ABOUT PAGE
   ======================================== */

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .profile-card {
        position: relative;
        top: 0;
    }

    .services-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .page-header h1 {
        font-size: 2em;
    }

    .profile-image {
        width: 200px;
        height: 200px;
    }

    .cta-section h3 {
        font-size: 1.8em;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
/* Services Hero Section */
    .services-hero {
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
        color: #fff;
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .services-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .services-hero .container {
        position: relative;
        z-index: 1;
    }

    .services-hero h1 {
        font-size: 3em;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .services-hero p {
        font-size: 1.3em;
        opacity: 0.95;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Services Overview */
    .services-overview {
        padding: 80px 0;
        background-color: #fff;
    }

    .overview-intro {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px;
    }

    .overview-intro h2 {
        font-size: 2.5em;
        color: #333;
        margin-bottom: 20px;
    }

    .overview-intro p {
        font-size: 1.1em;
        color: #666;
        line-height: 1.8;
    }

    /* Service Categories */
    .service-category {
        margin-bottom: 80px;
    }

    .category-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .category-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    }

    .category-icon i {
        font-size: 3em;
        color: #fff;
    }

    .category-header h3 {
        font-size: 2.2em;
        color: #007bff;
        margin-bottom: 15px;
    }

    .category-header p {
        font-size: 1.1em;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Service Cards Grid */
    .service-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-card {
        background: #fff;
        border-radius: 15px;
        padding: 35px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0, 123, 255, 0.2);
        border-color: #007bff;
    }

    .service-card-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #e3f2fd, #bbdefb);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .service-icon i {
        font-size: 1.8em;
        color: #007bff;
    }

    .service-card h4 {
        font-size: 1.5em;
        color: #333;
        margin: 0;
    }

    .service-card p {
        color: #666;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .service-features {
        list-style: none;
        margin-bottom: 25px;
    }

    .service-features li {
        display: flex;
        align-items: start;
        margin-bottom: 12px;
        color: #555;
        font-size: 0.95em;
    }

    .service-features li i {
        color: #28a745;
        margin-right: 10px;
        margin-top: 3px;
        font-size: 1.1em;
    }

    /* Mental Health Services Section */
    .mental-health-services {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 80px 0;
    }

    /* Conditions Treated */
    .conditions-section {
        padding: 80px 0;
        background-color: #fff;
    }

    .conditions-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-top: 40px;
    }

    .condition-card {
        background: #fff;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        padding: 25px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .condition-card:hover {
        border-color: #007bff;
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 123, 255, 0.15);
    }

    .condition-card i {
        font-size: 2.5em;
        color: #007bff;
        margin-bottom: 15px;
    }

    .condition-card h5 {
        font-size: 1.2em;
        color: #333;
        margin-bottom: 10px;
    }

    .condition-card p {
        font-size: 0.9em;
        color: #666;
        margin: 0;
    }

    /* Why Choose Us Section */
    .why-choose {
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
        color: #fff;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .why-choose::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
        opacity: 0.3;
    }

    .why-choose .container {
        position: relative;
        z-index: 1;
    }

    .why-choose h2 {
        color: #fff;
        font-size: 2.5em;
        margin-bottom: 50px;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .benefit-item {
        text-align: center;
        padding: 30px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .benefit-item:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }

    .benefit-item i {
        font-size: 3em;
        margin-bottom: 20px;
        opacity: 0.9;
    }

    .benefit-item h4 {
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    .benefit-item p {
        opacity: 0.9;
        font-size: 0.95em;
    }

    /* Insurance Section */
    .insurance-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }

    .insurance-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .insurance-info h3 {
        font-size: 2em;
        color: #007bff;
        margin-bottom: 20px;
    }

    .insurance-info p {
        font-size: 1.05em;
        color: #666;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .insurance-providers {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .insurance-providers h4 {
        color: #007bff;
        margin-bottom: 20px;
        font-size: 1.5em;
    }

    .provider-list {
        list-style: none;
    }

    .provider-list li {
        display: flex;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #e0e0e0;
        color: #555;
    }

    .provider-list li:last-child {
        border-bottom: none;
    }

    .provider-list li i {
        color: #28a745;
        margin-right: 12px;
        font-size: 1.2em;
    }

    /* CTA Section */
    .services-cta {
        background: linear-gradient(135deg, #28a745 0%, #20833a 100%);
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .services-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: pulse 15s ease-in-out infinite;
    }

    .services-cta .container {
        position: relative;
        z-index: 1;
    }

    .services-cta h2 {
        color: #fff;
        font-size: 2.8em;
        margin-bottom: 20px;
    }

    .services-cta p {
        color: rgba(255, 255, 255, 0.95);
        font-size: 1.3em;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons-large {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-large {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 18px 45px;
        background-color: #fff;
        color: #28a745;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.2em;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-large:hover {
        background-color: #f8f9fa;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .btn-large i {
        font-size: 1.3em;
    }

    .btn-outline-white-large {
        background-color: transparent;
        border: 3px solid #fff;
        color: #fff;
    }

    .btn-outline-white-large:hover {
        background-color: #fff;
        color: #28a745;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .service-cards {
            grid-template-columns: 1fr;
        }

        .conditions-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .benefits-grid {
            grid-template-columns: 1fr;
        }

        .insurance-content {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 600px) {
        .services-hero h1 {
            font-size: 2.2em;
        }

        .conditions-grid {
            grid-template-columns: 1fr;
        }

        .services-cta h2 {
            font-size: 2em;
        }

        .cta-buttons-large {
            flex-direction: column;
            align-items: center;
        }

        .btn-large {
            width: 100%;
            max-width: 320px;
            justify-content: center;
        }
    }
      /* Contact Hero Section */
    .contact-hero {
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
        color: #fff;
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .contact-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .contact-hero .container {
        position: relative;
        z-index: 1;
    }

    .contact-hero h1 {
        font-size: 3em;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .contact-hero p {
        font-size: 1.3em;
        opacity: 0.95;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Contact Section */
    .contact-section {
        padding: 80px 0;
        background-color: #fff;
    }

    .contact-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    /* Contact Form */
    .contact-form-wrapper {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 123, 255, 0.1);
    }

    .contact-form-wrapper h2 {
        font-size: 2em;
        color: #333;
        margin-bottom: 10px;
        text-align: left;
    }

    .contact-form-wrapper p {
        color: #666;
        margin-bottom: 30px;
        font-size: 1.05em;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #333;
        font-weight: 500;
        font-size: 0.95em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-family: 'Poppins', sans-serif;
        font-size: 1em;
        transition: all 0.3s ease;
        background-color: #f8f9fa;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #007bff;
        background-color: #fff;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .submit-btn {
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 10px;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    }

    .submit-btn i {
        margin-left: 8px;
    }

    /* Contact Info Cards */
    .contact-info-wrapper h2 {
        font-size: 2em;
        color: #333;
        margin-bottom: 30px;
        text-align: left;
    }

    .info-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 30px;
        border-radius: 12px;
        margin-bottom: 25px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .info-card:hover {
        border-color: #007bff;
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    }

    .info-card-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .info-icon i {
        font-size: 1.8em;
        color: #fff;
    }

    .info-card h3 {
        font-size: 1.4em;
        color: #007bff;
        margin: 0;
    }

    .info-card p {
        color: #555;
        font-size: 1.05em;
        line-height: 1.7;
        margin: 0;
    }

    .info-card a {
        color: #007bff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .info-card a:hover {
        color: #0056b3;
        text-decoration: underline;
    }

    /* Quick Contact Buttons */
    .quick-contact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .quick-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 15px;
        background: #fff;
        border: 2px solid #007bff;
        color: #007bff;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .quick-btn:hover {
        background: #007bff;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    }

    .quick-btn i {
        font-size: 1.2em;
    }

    /* Map Section */
    .map-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }

    .map-container {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        text-align: center;
    }

    .map-container h2 {
        font-size: 2.2em;
        color: #333;
        margin-bottom: 20px;
    }

    .map-container p {
        color: #666;
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    .map-placeholder {
        width: 100%;
        height: 400px;
        background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #007bff;
        border: 2px solid #007bff;
    }

    .map-placeholder i {
        font-size: 5em;
        margin-bottom: 20px;
        opacity: 0.7;
    }

    .map-placeholder p {
        font-size: 1.3em;
        font-weight: 600;
    }

    /* Hours Section */
    .hours-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
        color: #fff;
    }

    .hours-content {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .hours-content h2 {
        font-size: 2.5em;
        color: #fff;
        margin-bottom: 40px;
    }

    .hours-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    .hours-card {
        background: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

    .hours-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }

    .hours-card i {
        font-size: 2.5em;
        margin-bottom: 15px;
        opacity: 0.9;
    }

    .hours-card h3 {
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    .hours-card p {
        font-size: 1.1em;
        opacity: 0.95;
        margin: 0;
    }

    /* FAQ Section */
    .faq-section {
        padding: 80px 0;
        background-color: #fff;
    }

    .faq-intro {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 50px;
    }

    .faq-intro h2 {
        font-size: 2.5em;
        color: #333;
        margin-bottom: 20px;
    }

    .faq-intro p {
        font-size: 1.1em;
        color: #666;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .faq-item {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 12px;
        border-left: 4px solid #007bff;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        background: #e3f2fd;
        transform: translateX(5px);
    }

    .faq-item h4 {
        color: #007bff;
        font-size: 1.2em;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .faq-item h4 i {
        font-size: 0.9em;
    }

    .faq-item p {
        color: #555;
        line-height: 1.7;
        margin: 0;
    }

    /* Emergency Banner */
    .emergency-banner {
        background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        color: #fff;
        padding: 30px 0;
        text-align: center;
    }

    .emergency-banner h3 {
        font-size: 1.8em;
        margin-bottom: 10px;
    }

    .emergency-banner p {
        font-size: 1.1em;
        margin-bottom: 20px;
    }

    .emergency-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 30px;
        background: #fff;
        color: #dc3545;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1em;
        transition: all 0.3s ease;
    }

    .emergency-btn:hover {
        background: #f8f9fa;
        transform: scale(1.05);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .contact-layout {
            grid-template-columns: 1fr;
        }

        .faq-grid {
            grid-template-columns: 1fr;
        }

        .hours-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 600px) {
        .contact-hero h1 {
            font-size: 2.2em;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .quick-contact {
            grid-template-columns: 1fr;
        }

        .contact-form-wrapper,
        .info-card {
            padding: 25px;
        }
    }
    /* HOME CARE DETAIL PAGE SPECIFIC STYLES */
    
    /* Hero Section */
    .homecare-hero {
        background: linear-gradient(rgba(0, 123, 255, 0.9), rgba(0, 86, 179, 0.9)), 
                    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23007bff" width="1200" height="400"/></svg>');
        background-size: cover;
        background-position: center;
        color: #fff;
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .homecare-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: float 20s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translate(0, 0); }
        50% { transform: translate(-50px, 50px); }
    }

    .hero-content-wrapper {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 3.2em;
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1.3em;
        margin-bottom: 30px;
        opacity: 0.95;
        line-height: 1.7;
    }

    .hero-features {
        list-style: none;
        margin-bottom: 30px;
    }

    .hero-features li {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        font-size: 1.1em;
    }

    .hero-features li i {
        background: rgba(255, 255, 255, 0.2);
        padding: 10px;
        border-radius: 50%;
        margin-right: 15px;
        font-size: 1.2em;
    }

    .hero-cta {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .btn-hero {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 35px;
        background: #fff;
        color: #007bff;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1em;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-hero:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }

    .btn-hero-outline {
        background: transparent;
        border: 3px solid #fff;
        color: #fff;
    }

    .btn-hero-outline:hover {
        background: #fff;
        color: #007bff;
    }

    .hero-image-placeholder {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 40px;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 350px;
    }

    .hero-image-placeholder i {
        font-size: 8em;
        opacity: 0.5;
    }

    /* Introduction Section */
    .intro-section {
        padding: 80px 0;
        background: #fff;
    }

    .intro-content {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    .intro-content h2 {
        font-size: 2.5em;
        color: #333;
        margin-bottom: 25px;
    }

    .intro-content p {
        font-size: 1.15em;
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 60px;
    }

    .stat-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
    }

    .stat-number {
        font-size: 3em;
        font-weight: 700;
        color: #007bff;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 1.1em;
        color: #555;
        font-weight: 500;
    }

    /* Services Detail Section */
    .services-detail {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 2.8em;
        color: #333;
        margin-bottom: 20px;
    }

    .section-header p {
        font-size: 1.2em;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }

    .service-detail-card {
        background: #fff;
        border-radius: 20px;
        padding: 50px;
        margin-bottom: 40px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .service-detail-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(0, 123, 255, 0.15);
    }

    .service-header {
        display: flex;
        align-items: center;
        gap: 25px;
        margin-bottom: 30px;
        padding-bottom: 25px;
        border-bottom: 3px solid #e0e0e0;
    }

    .service-icon-large {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    }

    .service-icon-large i {
        font-size: 3em;
        color: #fff;
    }

    .service-header h3 {
        font-size: 2.2em;
        color: #007bff;
        margin: 0;
    }

    .service-description {
        font-size: 1.15em;
        color: #555;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .service-includes {
        margin-top: 30px;
    }

    .service-includes h4 {
        font-size: 1.5em;
        color: #333;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .service-includes h4 i {
        color: #007bff;
    }

    .includes-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .include-item {
        display: flex;
        align-items: start;
        background: #f8f9fa;
        padding: 15px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .include-item:hover {
        background: #e3f2fd;
        transform: translateX(5px);
    }

    .include-item i {
        color: #28a745;
        margin-right: 12px;
        margin-top: 3px;
        font-size: 1.2em;
    }

    .include-item span {
        color: #555;
        font-size: 1.05em;
    }

    /* Who Benefits Section */
    .who-benefits {
        padding: 80px 0;
        background: #fff;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 50px;
    }

    .benefit-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 35px;
        border-radius: 15px;
        text-align: center;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .benefit-card:hover {
        border-color: #007bff;
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0, 123, 255, 0.2);
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .benefit-icon i {
        font-size: 2.2em;
        color: #fff;
    }

    .benefit-card h4 {
        font-size: 1.4em;
        color: #333;
        margin-bottom: 15px;
    }

    .benefit-card p {
        color: #666;
        line-height: 1.7;
        font-size: 1.05em;
    }

    /* Process Section */
    .process-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .process-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
        opacity: 0.3;
    }

    .process-section .container {
        position: relative;
        z-index: 1;
    }

    .process-section h2 {
        color: #fff;
        text-align: center;
        font-size: 2.8em;
        margin-bottom: 60px;
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .step-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 35px;
        border-radius: 15px;
        text-align: center;
        border: 2px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

    .step-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: #fff;
        color: #007bff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2em;
        font-weight: 700;
        margin: 0 auto 20px;
    }

    .step-card h4 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .step-card p {
        opacity: 0.95;
        font-size: 1.05em;
        line-height: 1.6;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-top: 50px;
    }

    .testimonial-card {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        position: relative;
        border-left: 5px solid #007bff;
    }

    .testimonial-card::before {
        content: "\201C";
        font-size: 5em;
        color: rgba(0, 123, 255, 0.1);
        position: absolute;
        top: 10px;
        left: 20px;
        line-height: 1;
    }

    .testimonial-content {
        position: relative;
        z-index: 1;
    }

    .testimonial-text {
        font-size: 1.1em;
        color: #555;
        font-style: italic;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.5em;
        font-weight: 700;
    }

    .author-info h5 {
        font-size: 1.1em;
        color: #333;
        margin-bottom: 5px;
    }

    .author-info p {
        color: #666;
        font-size: 0.95em;
        margin: 0;
    }

    .stars {
        color: #ffc107;
        margin-top: 5px;
    }

    /* CTA Section */
    .final-cta {
        padding: 80px 0;
        background: linear-gradient(135deg, #28a745 0%, #20833a 100%);
        color: #fff;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .final-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: pulse 15s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }

    .final-cta .container {
        position: relative;
        z-index: 1;
    }

    .final-cta h2 {
        font-size: 3em;
        color: #fff;
        margin-bottom: 20px;
    }

    .final-cta p {
        font-size: 1.4em;
        margin-bottom: 40px;
        opacity: 0.95;
    }

    .cta-buttons-large {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-cta-large {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 18px 45px;
        background: #fff;
        color: #28a745;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.2em;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-cta-large:hover {
        background: #f8f9fa;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .hero-content-wrapper {
            grid-template-columns: 1fr;
        }

        .stats-grid,
        .benefits-grid {
            grid-template-columns: 1fr;
        }

        .process-steps {
            grid-template-columns: 1fr 1fr;
        }

        .includes-grid {
            grid-template-columns: 1fr;
        }

        .testimonials-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 600px) {
        .homecare-hero {
            padding: 60px 0;
        }

        .hero-text h1 {
            font-size: 2.2em;
        }

        .process-steps {
            grid-template-columns: 1fr;
        }

        .final-cta h2 {
            font-size: 2.2em;
        }

        .cta-buttons-large {
            flex-direction: column;
            align-items: center;
        }

        .btn-cta-large {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }
    /* Adapt the Hero header for internal pages - Psychiatric Care */
        .hero-psych-care {
            height: 250px;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), #007bff; /* Primary blue tone for Psychiatric Care */
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-align: center;
            margin-bottom: 40px;
        }

        .hero-psych-care h1 {
            font-size: 3em;
        }

        /* Introduction Section (Reusing service-intro) */
        .service-intro {
            text-align: center;
            padding: 20px 0 60px 0;
        }

        .service-intro p {
            max-width: 800px;
            margin: 0 auto 30px auto;
            font-size: 1.1em;
            color: #555;
        }

        /* Core Services/Therapeutic Areas Grid */
        .therapeutic-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .therapy-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            border-left: 5px solid #007bff;
            transition: transform 0.3s;
        }

        .therapy-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

        .therapy-card h4 {
            font-size: 1.4em;
            color: #333;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .therapy-card h4 i {
            color: #007bff;
            margin-right: 10px;
            font-size: 1.2em;
        }

        .therapy-card ul {
            list-style: none;
            padding-left: 0;
            margin-top: 15px;
        }

        .therapy-card ul li {
            padding: 5px 0;
            color: #666;
            display: flex;
            align-items: center;
        }
        
        .therapy-card ul li i {
            color: #28a745;
            margin-right: 8px;
            font-size: 0.9em;
        }

        /* Specialized Service Block (Telehealth) */
        .specialized-block {
            padding: 60px 0;
            background-color: #f8fafd;
            text-align: center;
        }

        .telehealth-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .telehealth-content i {
            font-size: 3em;
            color: #007bff;
            margin-bottom: 15px;
        }

        .telehealth-content h3 {
            font-size: 2em;
            color: #007bff;
            margin-bottom: 15px;
        }

        /* Final CTA (Reusing call-to-action) */
        .call-to-action {
            background-color: #28a745; /* Green tone for final appointment CTA */
            color: #fff;
            padding: 80px 0;
            text-align: center;
            margin-top: 60px;
        }

        .call-to-action h2 {
            color: #fff;
        }


        /* Responsive Overrides */
        @media (max-width: 992px) {
            .therapeutic-grid {
                grid-template-columns: 1fr; /* Stack columns */
            }
        }
 /* Adapt the Hero header for internal pages - Telehealth */
        .hero-telehealth {
            height: 250px;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), #ffc107; /* Yellow/Gold tone for Telehealth */
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-align: center;
            margin-bottom: 40px;
        }

        .hero-telehealth h1 {
            font-size: 3em;
        }
        
        /* Introduction Section (Reusing service-intro) */
        .service-intro {
            text-align: center;
            padding: 20px 0 60px 0;
        }

        .service-intro p {
            max-width: 800px;
            margin: 0 auto 30px auto;
            font-size: 1.1em;
            color: #555;
        }

        /* Benefits Grid (Similar to Home Care Features) */
        .telehealth-benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .benefit-card {
            background-color: #f9f9f9;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            border-bottom: 4px solid #ffc107; /* Telehealth color border */
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
        }

        .benefit-card i {
            font-size: 2.2em;
            color: #007bff; /* Use primary blue for icons */
            margin-bottom: 10px;
        }

        .benefit-card h4 {
            font-size: 1.2em;
            margin-bottom: 10px;
            color: #333;
        }

        /* Services Offered Section (Image/Text Layout) */
        .telehealth-services-offered {
            padding: 60px 0;
            background-color: #f8fafd;
        }

        .services-offered-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .services-offered-text h3 {
            font-size: 2em;
            color: #007bff;
            margin-bottom: 20px;
        }
        
        .services-offered-text ul {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }
        
        .services-offered-text ul li {
            padding: 10px 0;
            display: flex;
            align-items: flex-start;
            border-bottom: 1px dashed #eee;
            color: #555;
        }
        
        .services-offered-text ul li i {
            color: #28a745;
            margin-right: 15px;
            font-size: 1.2em;
            margin-top: 3px;
        }

        .telehealth-image-placeholder {
            width: 100%;
            height: 350px;
            background-color: #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .telehealth-image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Technology & Security Block */
        .security-block {
            padding: 60px 0;
            text-align: center;
        }
        
        .security-content {
            max-width: 900px;
            margin: 0 auto;
            border: 1px solid #ffc107;
            padding: 40px;
            border-radius: 10px;
            background-color: #fffaf0;
        }
        
        .security-content i {
            font-size: 2.5em;
            color: #ffc107;
            margin-bottom: 15px;
        }

        .security-content h3 {
            font-size: 2em;
            color: #333;
            margin-bottom: 15px;
        }

        /* Final CTA (Reusing call-to-action) */
        .call-to-action {
            background-color: #007bff; /* Primary blue for final appointment CTA */
            color: #fff;
            padding: 80px 0;
            text-align: center;
            margin-top: 60px;
        }

        .call-to-action h2 {
            color: #fff;
        }


        /* Responsive Overrides */
        @media (max-width: 992px) {
            .telehealth-benefits-grid, .services-offered-grid {
                grid-template-columns: 1fr; /* Stack columns */
                text-align: center;
            }

            .services-offered-grid {
                /* Reverse the order on mobile for better flow (Image then Text) */
                display: flex;
                flex-direction: column-reverse;
            }
            
            .services-offered-text ul li {
                justify-content: center;
                text-align: left;
            }
            .services-offered-text ul {
                padding-left: 0;
            }
            .telehealth-image-placeholder {
                height: 250px;
            }
        }
         /* Adapt the Hero header for internal pages - Dementia Care */
        .hero-dementia-care {
            height: 250px;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), #800080; /* Purple tone for focus and specialty */
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-align: center;
            margin-bottom: 40px;
        }

        .hero-dementia-care h1 {
            font-size: 3em;
        }

        /* Introduction Section (Reusing service-intro) */
        .service-intro {
            text-align: center;
            padding: 20px 0 60px 0;
        }

        .service-intro p {
            max-width: 800px;
            margin: 0 auto 30px auto;
            font-size: 1.1em;
            color: #555;
        }

        /* Key Pillars Section */
        .care-pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .pillar-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            border-bottom: 4px solid #800080; /* Dementia color border */
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s;
        }
        
        .pillar-card:hover {
            box-shadow: 0 6px 15px rgba(128, 0, 128, 0.3);
        }

        .pillar-card i {
            font-size: 2.2em;
            color: #007bff; /* Use primary blue for icons */
            margin-bottom: 10px;
        }

        .pillar-card h4 {
            font-size: 1.2em;
            margin-bottom: 10px;
            color: #333;
            font-weight: 600;
        }
        
        /* Specialized Training & Support Block (Image/Text Layout) */
        .training-support-section {
            padding: 60px 0;
            background-color: #f8fafd;
        }

        .training-support-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .training-support-text h3 {
            font-size: 2em;
            color: #800080;
            margin-bottom: 20px;
        }

        .training-support-text ul {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }
        
        .training-support-text ul li {
            padding: 10px 0;
            display: flex;
            align-items: flex-start;
            border-bottom: 1px dashed #eee;
            color: #555;
        }
        
        .training-support-text ul li i {
            color: #28a745;
            margin-right: 15px;
            font-size: 1.2em;
            margin-top: 3px;
        }

        .training-image-placeholder {
            width: 100%;
            height: 350px;
            background-color: #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .training-image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Safety & Engagement Block */
        .safety-engagement {
            padding: 60px 0;
            text-align: center;
        }
        
        .engagement-content {
            max-width: 900px;
            margin: 0 auto;
            border: 1px solid #007bff;
            padding: 40px;
            border-radius: 10px;
            background-color: #fff;
            box-shadow: 0 4px 10px rgba(0, 123, 255, 0.1);
        }
        
        .engagement-content i {
            font-size: 2.5em;
            color: #800080;
            margin-bottom: 15px;
        }

        .engagement-content h3 {
            font-size: 2em;
            color: #333;
            margin-bottom: 15px;
        }


        /* Final CTA (Reusing call-to-action, customized color) */
        .call-to-action {
            background-color: #28a745; /* Green tone for final appointment CTA */
            color: #fff;
            padding: 80px 0;
            text-align: center;
            margin-top: 60px;
        }

        .call-to-action h2 {
            color: #fff;
        }


        /* Responsive Overrides */
        @media (max-width: 992px) {
            .care-pillars-grid, .training-support-grid {
                grid-template-columns: 1fr; /* Stack columns */
                text-align: center;
            }

            .training-support-grid {
                /* Reverse order on mobile for better flow (Image then Text) */
                display: flex;
                flex-direction: column-reverse;
            }
            
            .training-support-text ul li {
                justify-content: center;
                text-align: left;
            }
            .training-support-text ul {
                padding-left: 0;
            }
            .training-image-placeholder {
                height: 250px;
            }
        }