:root {
            --primary-blue: #0056A2;
            --accent-teal: #17A2B8;
            --dark-blue: #003366;
            --light-blue: #E3F2FD;
            --light-gray: #F8F9FA;
            --dark-gray: #495057;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: #333;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            background-color: var(--light-blue);
            border-radius: 5px;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 86, 162, 0.9)), url('https://images.unsplash.com/photo-1586773860418-dc22f8b874bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
        }
        .hero-section h1 {
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 1.5rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent-teal);
            border-radius: 2px;
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        .icon-box i {
            font-size: 1.8rem;
            color: var(--primary-blue);
        }
        .department-card {
            border-left: 5px solid var(--primary-blue);
            padding-left: 1.5rem;
        }
        .stat-box {
            background: var(--light-blue);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            display: block;
        }
        .btn-teal {
            background-color: var(--accent-teal);
            color: white;
            padding: 0.6rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        .btn-teal:hover {
            background-color: #138496;
            transform: scale(1.05);
            color: white;
        }
        .footer {
            background-color: var(--dark-blue);
            color: white;
        }
        .footer a {
            color: #E3F2FD;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .flink {
            background-color: rgba(255,255,255,0.1);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            margin: 0.2rem;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }
        .map-container {
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .news-card {
            border-top: 5px solid var(--accent-teal);
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        .breadcrumb-item.active {
            color: var(--dark-gray);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
                text-align: center;
            }
            .section-title:after {
                left: 50%;
            }
        }
