* {
            transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        .hero-gradient {
            background: linear-gradient(135deg, rgba(13, 59, 102, 0.9) 0%, rgba(42, 157, 143, 0.85) 100%);
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .section-padding {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }
        }
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .flink {
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            color: #4a5568;
            text-decoration: none;
        }
        .flink:hover {
            border-color: #2a9d8f;
            color: #2a9d8f;
            background-color: #f7fafc;
        }
