
        :root {
            --primary-color: #735d78;
            --secondary-color: #b392ac;
            --light-color: #d1b3c4;
            --dark-color: #333;
            --light-bg: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .navbar {
            background-color: transparent !important;
            padding: 1rem 0;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 600;
            margin: 0 1rem;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        .section-padding {
            padding: 5rem 0;
        }
        
        .section-title {
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }
        
        .hero-section {
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://media.istockphoto.com/id/1446229465/photo/red-heart-and-stethoscope-are-on-blue-background.webp?b=1&s=170667a&w=0&k=20&c=1-aE7XV24f8qVr8fGnpvypir8fSxYaM9sHZurKoutj8=') center/cover no-repeat;
            padding: 8rem 0;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--dark-color);
        }
        
        .about-section {
            background-color: var(--light-bg);
        }
        
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .counter-box {
            text-align: center;
            padding: 2rem;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .counter-box:hover {
            transform: translateY(-10px);
        }
        
        .counter-box i {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .vision-mission-box {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .choose-us-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        
        .choose-us-item i {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card h4 {
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .service-card p {
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        
        .cta-section {
            background: linear-gradient(rgba(115, 93, 120, 0.9), rgba(179, 146, 172, 0.9)), 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 no-repeat;
            padding: 5rem 0;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .accordion-button {
            background-color: var(--light-bg);
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--light-color);
            color: white;
        }
        
        .review-card {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            position: relative;
        }
        
        .review-card::before {
            content: '\201C';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: var(--light-color);
            opacity: 0.5;
        }
        
        .review-card p {
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        
        .review-card h5 {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 1rem;
        }
        
        .subscribe-section {
            background-color: var(--light-bg);
        }
        
        .contact-section {
            background-color: white;
        }
        
        .contact-info {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            height: 100%;
        }
        
        .contact-info i {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-right: 1rem;
        }
        
        .contact-form {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
        }
        
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        footer h5 {
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--light-color);
            border-radius: 1.5px;
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 0.8rem;
        }
        
        footer ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--light-color);
            padding-left: 5px;
        }
        
        .footer-subscribe {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
        }
        
        .footer-subscribe input {
            border-radius: 50px;
            border: none;
            padding: 0.5rem 1rem;
        }
        
        .footer-subscribe button {
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .copyright a {
            color: var(--light-color);
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 3rem 0;
            }
        }
