        .flink a {
            transition: all 0.3s ease;
            border-radius: 8px;
            padding: 10px 15px;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            display: inline-block;
            text-decoration: none;
        }
        .flink a:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background: linear-gradient(135deg, #2a5298, #1e3c72);
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
        }
        .gradient-bg {
            background: linear-gradient(135deg, #0f172a, #1e293b);
        }
        .card-shadow {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        img {
            max-width: 100%;
            height: auto;
        }
