:root {
            --mh-blue: #0a3d62;
            --mh-light-blue: #1e90ff;
            --mh-gold: #daa520;
            --mh-white: #f8f9fa;
            --mh-gray: #6c757d;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .navbar {
            background-color: var(--mh-blue) !important;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .navbar-brand {
            color: var(--mh-white) !important;
            font-weight: 700;
            font-size: 1.8rem;
        }
        .navbar-brand span {
            color: var(--mh-gold);
        }
        .nav-link {
            color: var(--mh-white) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--mh-gold) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(10, 61, 98, 0.9)), url('https://images.unsplash.com/photo-1586773860418-dc22f8b874bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            padding: 8rem 0 6rem;
            margin-top: 76px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }
        .section-title {
            color: var(--mh-blue);
            font-weight: 700;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--mh-gold);
        }
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--mh-light-blue);
            margin-bottom: 1.5rem;
        }
        .doctor-card {
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
        }
        .doctor-card:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background: #f1f1f1;
            border-radius: 5px;
            color: var(--mh-blue);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #ddd;
        }
        .flink:hover {
            background: var(--mh-blue);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background-color: #1a252f;
            color: var(--mh-white);
            padding-top: 3rem;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--mh-gold);
        }
        .copyright {
            background-color: #0c1420;
            padding: 1.5rem 0;
            margin-top: 2rem;
        }
        .btn-mh {
            background-color: var(--mh-blue);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--mh-blue);
        }
        .btn-mh:hover {
            background-color: transparent;
            color: var(--mh-blue);
        }
        .btn-mh-outline {
            background-color: transparent;
            color: var(--mh-blue);
            border: 2px solid var(--mh-blue);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-mh-outline:hover {
            background-color: var(--mh-blue);
            color: white;
        }
        .emergency-banner {
            background-color: #dc3545;
            color: white;
            padding: 10px 0;
            font-weight: 700;
            font-size: 1.2rem;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.9; }
            100% { opacity: 1; }
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--mh-blue);
            display: block;
            line-height: 1;
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(10, 61, 98, 0.1);
            color: var(--mh-blue);
            font-weight: 600;
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .navbar-nav {
                text-align: center;
                background-color: rgba(10, 61, 98, 0.98);
                padding: 1rem;
                border-radius: 0 0 10px 10px;
            }
        }
