:root {
            --primary-blue: #0056a6;
            --secondary-teal: #20a8a4;
            --accent-green: #28a745;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: var(--transition);
        }
        .nav-link:hover {
            color: var(--secondary-teal) !important;
            transform: translateY(-2px);
        }
        .hero {
            background: linear-gradient(rgba(0, 86, 166, 0.88), rgba(32, 168, 164, 0.85)), 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: 6rem 0;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 800px;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background-color: #004080;
            border-color: #004080;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .section-title {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-teal);
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background-color: rgba(32, 168, 164, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--secondary-teal);
            font-size: 1.8rem;
        }
        .stats-box {
            background-color: var(--light-bg);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: var(--transition);
        }
        .stats-box:hover {
            background-color: white;
            box-shadow: var(--shadow);
        }
        .stats-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1;
        }
        .stats-label {
            color: var(--secondary-teal);
            font-weight: 600;
            margin-top: 0.5rem;
        }
        footer {
            background-color: #1a2a3a;
            color: #e0e0e0;
            padding-top: 3rem;
        }
        footer h5 {
            color: white;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        footer a {
            color: #b0d0ff;
            text-decoration: none;
            transition: var(--transition);
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .footer-bottom {
            background-color: #0d1520;
            padding: 1.5rem 0;
            margin-top: 3rem;
            font-size: 0.9rem;
        }
        .flink {
            display: inline-block;
            background-color: rgba(255,255,255,0.08);
            padding: 0.5rem 1.2rem;
            border-radius: 6px;
            margin: 0.3rem;
            transition: var(--transition);
            color: #b0d0ff;
            text-decoration: none;
        }
        .flink:hover {
            background-color: var(--secondary-teal);
            color: white;
            transform: scale(1.05);
        }
        .department-card {
            border-left: 5px solid var(--secondary-teal);
            padding-left: 1.5rem;
            margin-bottom: 2rem;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 86, 166, 0.05);
            color: var(--primary-blue);
            font-weight: 600;
        }
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .emergency-banner {
            background-color: #d9534f;
            color: white;
            padding: 1rem;
            border-radius: 10px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(217, 83, 79, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(217, 83, 79, 0); }
            100% { box-shadow: 0 0 0 0 rgba(217, 83, 79, 0); }
        }
        .testimonial-card {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            border-top: 4px solid var(--secondary-teal);
        }
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        .testimonial-author {
            font-weight: 600;
            color: var(--primary-blue);
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .stats-number {
                font-size: 2.2rem;
            }
        }
