:root {
            --primary-blue: #0056a6;
            --secondary-teal: #20a39e;
            --accent-gold: #ffb347;
            --dark-gray: #333;
            --light-gray: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-gray);
            line-height: 1.8;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--primary-blue);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-blue) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--accent-gold) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 86, 166, 0.85), rgba(32, 163, 158, 0.8)), url('https://images.unsplash.com/photo-1582750433449-648ed127bb54?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
        }
        .hero-section h1 {
            color: white;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
        }
        .section-padding {
            padding: 80px 0;
        }
        .icon-box {
            background: var(--light-gray);
            border-radius: 12px;
            padding: 30px;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 5px solid var(--secondary-teal);
        }
        .icon-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .flink {
            background: var(--light-gray);
            border-radius: 8px;
            padding: 12px 20px;
            margin: 8px;
            display: inline-block;
            transition: all 0.3s;
            color: var(--primary-blue);
            text-decoration: none;
            border: 1px solid #ddd;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.05);
        }
        footer {
            background: linear-gradient(to right, #1a2980, #26d0ce);
            color: white;
        }
        footer a {
            color: #ffeb3b;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
        }
        .btn-primary:hover {
            background-color: var(--secondary-teal);
            border-color: var(--secondary-teal);
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .card:hover {
            transform: translateY(-8px);
        }
        .news-item {
            border-bottom: 1px dashed #ccc;
            padding-bottom: 20px;
            margin-bottom: 20px;
        }
        .sticky-top {
            top: 20px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .section-padding {
                padding: 40px 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
