:root {
            --primary-blue: #0a3661;
            --secondary-blue: #1e549f;
            --accent-gold: #c9a53a;
            --light-gray: #f8f9fa;
            --medium-gray: #6c757d;
            --dark-gray: #343a40;
        }
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--dark-gray);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Roboto Slab', serif;
            font-weight: 600;
            color: var(--primary-blue);
        }
        .header-bg {
            background: linear-gradient(rgba(10, 54, 97, 0.9), rgba(10, 54, 97, 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: 180px 0 100px;
        }
        .nav-bar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        .nav-bar.scrolled {
            padding: 8px 0;
            background-color: white;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .navbar-brand span {
            color: var(--accent-gold);
        }
        .nav-link {
            color: var(--primary-blue) !important;
            font-weight: 500;
            padding: 8px 15px !important;
            margin: 0 3px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            background-color: var(--primary-blue);
            color: white !important;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--accent-gold);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background-color: rgba(10, 54, 97, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary-blue);
            font-size: 1.8rem;
        }
        .btn-primary-custom {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            color: white;
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: var(--secondary-blue);
            border-color: var(--secondary-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(30, 84, 159, 0.3);
        }
        .stats-box {
            background-color: var(--primary-blue);
            color: white;
            padding: 40px 20px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s;
        }
        .stats-box:hover {
            background-color: var(--secondary-blue);
        }
        .stats-number {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--accent-gold);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px 10px;
            background-color: var(--light-gray);
            border-radius: 6px;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        .department-icon {
            font-size: 2.2rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        .footer {
            background-color: var(--primary-blue);
            color: #d1d9e6;
            padding-top: 60px;
        }
        .footer a {
            color: #d1d9e6;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
        }
        .footer-title {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-gold);
            display: inline-block;
        }
        .copyright {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            margin-top: 40px;
        }
        .emergency-banner {
            background-color: #dc3545;
            color: white;
            padding: 12px 0;
            font-weight: 600;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.9; }
            100% { opacity: 1; }
        }
        .news-card {
            border-left: 4px solid var(--primary-blue);
            padding-left: 15px;
            margin-bottom: 25px;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: var(--accent-gold);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 25px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -33px;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: var(--primary-blue);
            border: 3px solid var(--accent-gold);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(10, 54, 97, 0.05);
            color: var(--primary-blue);
        }
        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.25rem rgba(10, 54, 97, 0.25);
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        @media (max-width: 768px) {
            .header-bg {
                padding: 140px 0 70px;
            }
            .stats-number {
                font-size: 2.2rem;
            }
        }
