        :root {
            --primary-dark-red: #8B0000;
            --primary-indigo: #1A237E; /* More government-like indigo */
            --primary-white: #FFFFFF;
            --secondary-light: #F5F7FA;
            --accent-gold: #D4AF37;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
            background-color: var(--secondary-light);
            scroll-behavior: smooth;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Merriweather', serif;
            font-weight: 700;
        }
        
        .govt-header {
            background: linear-gradient(to right, var(--primary-indigo) 70%, var(--primary-dark-red));
            color: white;
            border-bottom: 4px solid var(--accent-gold);
        }
        
        .official-seal {
            border: 3px solid var(--accent-gold);
            border-radius: 50%;
            padding: 10px;
            background: white;
        }
        
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.9), rgba(139, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3') no-repeat center center/cover;
            min-height: 400px;
            display: flex;
            align-items: center;
        }
        
        .department-card {
            border-left: 4px solid var(--primary-dark-red);
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .department-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .stat-badge {
            background: var(--primary-indigo);
            color: white;
            border-radius: 4px;
            padding: 6px 12px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .official-document {
            background: white;
            border: 1px solid #e2e8f0;
            border-top: 4px solid var(--primary-dark-red);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
        }
        
        .footer-section {
            background: var(--primary-indigo);
            color: white;
            border-top: 4px solid var(--accent-gold);
        }
        
        .footer-links a {
            position: relative;
            padding-left: 15px;
        }
        
        .footer-links a:before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--accent-gold);
        }
        
        .news-card {
            border-bottom: 3px solid var(--primary-dark-red);
            transition: all 0.3s ease;
        }
        
        .news-card:hover {
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .btn-official {
            background: var(--primary-dark-red);
            color: white;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-official:hover {
            background: #6d0000;
            transform: translateY(-2px);
        }
        
        .agency-tag {
            background: var(--accent-gold);
            color: var(--primary-indigo);
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.85rem;
        }
        
        .official-banner {
            background: repeating-linear-gradient(
                45deg,
                var(--primary-indigo),
                var(--primary-indigo) 10px,
                var(--primary-dark-red) 10px,
                var(--primary-dark-red) 20px
            );
            color: white;
            text-align: center;
            padding: 8px 0;
            font-weight: 500;
        }
        
     .hero-about {
            background: linear-gradient(rgba(26, 35, 126, 0.9), rgba(139, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3') no-repeat center center/cover;
            min-height: 400px;
            display: flex;
            align-items: center;
        }
        
       .timeline-item {
            border-left: 3px solid var(--primary-dark-red);
            position: relative;
            padding-left: 30px;
            padding-bottom: 30px;
        }
        
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--primary-dark-red);
            border: 3px solid var(--accent-gold);
        }
        
        .timeline-item:last-child {
            padding-bottom: 0;
        }
        
        .leadership-card {
            transition: all 0.3s ease;
            border-bottom: 3px solid var(--primary-indigo);
        }
        
        .leadership-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .value-card {
            border-top: 4px solid var(--primary-dark-red);
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .active-nav {
            color: var(--accent-gold);
        }
        
        .active-nav:after {
            width: 100%;
        }
        