:root {
            --primary-blue: #0056a6;
            --secondary-green: #28a745;
            --accent-gold: #ffc107;
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #fff;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--secondary-green) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 86, 166, 0.85), rgba(40, 167, 69, 0.8)), url('https://images.unsplash.com/photo-1516549655669-dfbf10d0c9b7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            color: white;
            padding: 8rem 0;
            text-align: center;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .section-title {
            color: var(--primary-blue);
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 0.5rem;
            margin-bottom: 2rem;
            display: inline-block;
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .department-icon {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: var(--secondary-green);
            border-color: var(--secondary-green);
            transform: scale(1.05);
        }
        footer {
            background-color: var(--dark-gray);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--accent-gold);
        }
        .friend-links {
            background-color: var(--light-gray);
            padding: 2rem;
            border-radius: 10px;
        }
        .flink {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.5rem 1rem;
            background: white;
            border-radius: 5px;
            color: var(--primary-blue);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #ddd;
        }
        .flink:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        .contact-info i {
            color: var(--accent-gold);
            margin-right: 10px;
        }
        .sticky-top {
            top: 20px;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 5rem 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
