
        :root {
            --primary-color: #4682B4;
            --secondary-color: #B0E0E6;
            --white-color: #FFFFFF;
            --text-dark: #333333;
            --text-light: #666666;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .cta-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white-color) !important;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: inline-block;
            border: none;
        }
        
        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(70, 130, 180, 0.3);
            color: var(--white-color) !important;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 100px 0;
            color: var(--white-color);
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.pexels.com/photos/40568/medical-appointment-doctor-healthcare-40568.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
            opacity: 0.2;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-section h1 {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
            text-transform: uppercase;
        }
        
        .hero-btn {
            background: var(--white-color);
            color: var(--primary-color) !important;
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s ease;
            animation: fadeInUp 1.2s ease;
        }
        
        .hero-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            color: var(--primary-color) !important;
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        /* About Section */
        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-text {
            padding: 2rem;
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--secondary-color), var(--white-color));
            padding: 60px 0;
        }
        
        .counter-box {
            text-align: center;
            padding: 2rem;
            background: var(--white-color);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .counter-box:hover {
            transform: translateY(-5px);
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        /* Vision & Mission */
        .vision-mission-box {
            background: var(--white-color);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-box:hover {
            transform: translateY(-5px);
        }
        
        .vision-mission-box h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .vision-mission-box i {
            margin-right: 0.5rem;
            color: var(--secondary-color);
        }
        
        /* Features Section */
        .feature-box {
            text-align: center;
            padding: 2rem;
            background: var(--white-color);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white-color);
        }
        
        /* Services Section */
        .service-card {
            background: var(--secondary-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 1.5rem;
        }
        
        .service-card-body h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        /* Reviews Section */
        .review-card {
            background: var(--white-color);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .review-stars {
            color: #FFD700;
            margin-bottom: 1rem;
        }
        
        /* FAQ Section */
        .accordion-button {
            background: var(--secondary-color);
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: var(--white-color);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 10px !important;
            overflow: hidden;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 80px 0;
            color: var(--white-color);
            text-align: center;
        }
        
        .cta-btn-large {
            background: var(--white-color);
            color: var(--primary-color) !important;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .cta-btn-large:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            color: var(--primary-color) !important;
        }
        
        /* Contact Section */
        .contact-info {
            background: var(--white-color);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .contact-info h5 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .contact-info p {
            margin-bottom: 1rem;
        }
        
        .contact-info i {
            color: var(--primary-color);
            margin-right: 0.5rem;
        }
        
        .contact-form {
            background: var(--white-color);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .contact-form h5 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .form-control, .form-select {
            border: 2px solid var(--secondary-color);
            border-radius: 8px;
            padding: 0.75rem;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(70, 130, 180, 0.25);
        }
        
        /* Footer */
        .footer {
            background: var(--primary-color);
            color: var(--white-color);
            padding: 50px 0 20px;
        }
        
        .footer h5 {
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer ul li a {
            color: var(--white-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer ul li a:hover {
            color: var(--secondary-color);
        }
        
        .subscribe-form {
            display: flex;
            margin-top: 1rem;
        }
        
        .subscribe-form input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .subscribe-form button {
            background: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            padding: 0.75rem 1rem;
            border-radius: 0 5px 5px 0;
            transition: background 0.3s ease;
        }
        
        .subscribe-form button:hover {
            background: var(--white-color);
        }
        
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        
        .copyright a {
            color: var(--secondary-color);
            text-decoration: none;
            margin: 0 0.5rem;
        }
        
        .copyright a:hover {
            color: var(--white-color);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
