html {
            scroll-behavior: smooth;
        }
        .flink a {
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .flink a:hover {
            border-bottom-color: #e53e3e;
            transform: translateY(-2px);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .gradient-bg {
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
        }
        .text-balance {
            text-wrap: balance;
        }
