body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: #0d6efd !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 110, 253, 0.8), rgba(13, 110, 253, 0.9)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: white;
            padding: 100px 0;
        }
        .section-title {
            color: #0d6efd;
            border-bottom: 3px solid #0d6efd;
            display: inline-block;
            padding-bottom: 10px;
            margin-bottom: 30px;
        }
        .service-card, .doctor-card, .news-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            background: white;
            height: 100%;
        }
        .service-card:hover, .doctor-card:hover, .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .service-icon {
            font-size: 3rem;
            color: #0d6efd;
            margin-bottom: 20px;
        }
        .flink {
            display: inline-block;
            padding: 10px 15px;
            margin: 5px;
            background: #e9ecef;
            border-radius: 5px;
            text-decoration: none;
            color: #333;
            transition: background 0.3s;
        }
        .flink:hover {
            background: #0d6efd;
            color: white;
        }
        footer {
            background: #343a40;
            color: white;
            padding: 40px 0 20px;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
        }
        .contact-info i {
            color: #0d6efd;
            margin-right: 10px;
        }
        .btn-primary {
            background-color: #0d6efd;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            transition: background 0.3s;
        }
        .btn-primary:hover {
            background-color: #0a58ca;
        }
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1020;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .news-date {
            color: #6c757d;
            font-size: 0.9rem;
        }
        .accordion-button:not(.collapsed) {
            background-color: #e7f1ff;
            color: #0d6efd;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #0d6efd;
        }
        .stat-label {
            font-size: 1.2rem;
            color: #6c757d;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
