body {
            font-family: 'Noto Sans SC', sans-serif;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
        }
        .section-padding {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin: 0.25rem;
            background-color: #f7fafc;
            border: 1px solid #e2e8f0;
            border-radius: 0.375rem;
            color: #4a5568;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: #edf2f7;
            border-color: #cbd5e0;
            color: #2d3748;
            text-decoration: none;
        }
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(10px);
        }
