@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        body { font-family: 'Inter', sans-serif; }
        .hero-bg { background: linear-gradient(rgba(0, 0, 50, 0.7), rgba(0, 0, 50, 0.7)), url('https://images.unsplash.com/photo-1531415074968-036ba1b575da?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80'); background-size: cover; background-position: center; }
        .section-padding { padding-top: 5rem; padding-bottom: 5rem; }
        .flink { transition: all 0.3s ease; border: 1px solid #e5e7eb; padding: 0.75rem 1.5rem; border-radius: 0.5rem; display: inline-flex; align-items: center; }
        .flink:hover { background-color: #f3f4f6; transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
        .nav-link { font-weight: 500; position: relative; }
        .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: #dc2626; transition: width 0.3s; }
        .nav-link:hover::after { width: 100%; }
        .card-hover { transition: transform 0.3s, box-shadow 0.3s; }
        .card-hover:hover { transform: translateY(-10px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
        .stats-bg { background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%); }
        .news-card { border-left: 4px solid #dc2626; }
        .btn-primary-custom { background: linear-gradient(to right, #1e40af, #3b82f6); color: white; padding: 0.75rem 2rem; border-radius: 0.375rem; font-weight: 600; transition: all 0.3s; }
        .btn-primary-custom:hover { background: linear-gradient(to right, #1e3a8a, #2563eb); transform: scale(1.05); }
