.flink a {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin: 0.25rem;
            background-color: #f3f4f6;
            border-radius: 0.375rem;
            transition: all 0.3s ease;
        }
        .flink a:hover {
            background-color: #1e40af;
            color: white;
            transform: translateY(-2px);
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .transition-all {
            transition: all 0.3s ease;
        }
