html {
            scroll-behavior: smooth;
        }
        .hero-gradient {
            background: linear-gradient(135deg, rgba(10, 61, 98, 0.92) 0%, rgba(7, 153, 146, 0.88) 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(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        .nav-link-hover::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: #079992;
            transition: width 0.3s;
        }
        .nav-link-hover:hover::after {
            width: 100%;
        }
        .stat-counter {
            font-variant-numeric: tabular-nums;
        }
        .flink {
            border-left: 3px solid #079992;
            padding-left: 1rem;
            transition: all 0.3s ease;
        }
        .flink:hover {
            border-left-color: #e55039;
            background-color: rgba(209, 242, 235, 0.2);
        }
        @media (max-width: 768px) {
            .section-padding {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }
        }
