:root {
            --mh-primary: #0056a3;
            --mh-secondary: #8b0000;
            --mh-accent: #f8f9fa;
            --mh-dark: #212529;
            --mh-light: #e9ecef;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 86, 163, 0.85), rgba(139, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0 80px;
        }
        .section-title {
            color: var(--mh-primary);
            border-bottom: 3px solid var(--mh-secondary);
            padding-bottom: 10px;
            margin-bottom: 30px;
            position: relative;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--mh-primary);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-top: 4px solid var(--mh-primary);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .btn-mh-primary {
            background-color: var(--mh-primary);
            border-color: var(--mh-primary);
            color: white;
            padding: 10px 25px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .btn-mh-primary:hover {
            background-color: #004080;
            border-color: #004080;
            transform: scale(1.05);
        }
        .btn-mh-secondary {
            background-color: var(--mh-secondary);
            border-color: var(--mh-secondary);
            color: white;
        }
        .btn-mh-secondary:hover {
            background-color: #690000;
            border-color: #690000;
        }
        .nav-link {
            color: var(--mh-dark) !important;
            font-weight: 500;
            margin: 0 5px;
            position: relative;
        }
        .nav-link:hover:after {
            width: 100%;
        }
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--mh-secondary);
            transition: width 0.3s ease;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--mh-primary) !important;
            font-size: 1.8rem;
        }
        footer {
            background-color: var(--mh-dark);
            color: var(--mh-light);
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background: var(--mh-light);
            border-radius: 4px;
            color: var(--mh-primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: var(--mh-primary);
            color: white;
            transform: translateY(-3px);
        }
        .emergency-banner {
            background-color: var(--mh-secondary);
            color: white;
            padding: 15px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 0.9; }
            50% { opacity: 1; }
            100% { opacity: 0.9; }
        }
        .department-icon {
            font-size: 2.5rem;
            color: var(--mh-primary);
            margin-bottom: 15px;
        }
        .testimonial-card {
            border-left: 4px solid var(--mh-primary);
            padding-left: 20px;
            font-style: italic;
        }
        .map-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 50px;
            }
            .navbar-nav {
                text-align: center;
                padding-top: 15px;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
