html {
            scroll-behavior: smooth;
        }
        .hero-gradient {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(13, 148, 136, 0.85) 100%);
        }
        .section-divider {
            height: 4px;
            background: linear-gradient(to right, #1e3a8a, #0d9488);
            width: 120px;
            margin: 1.5rem auto;
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .flink {
            border-left: 3px solid #0d9488;
            padding-left: 0.75rem;
            transition: all 0.2s;
        }
        .flink:hover {
            border-left-color: #1e3a8a;
            background-color: #f3f4f6;
        }
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(8px);
        }
        .tab-active {
            border-bottom: 3px solid #1e3a8a;
            color: #1e3a8a;
        }
