.flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px;
            background-color: #f0f9ff;
            border: 1px solid #bae6fd;
            border-radius: 6px;
            color: #0369a1;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: #e0f2fe;
            transform: translateY(-3px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
        }
        .gradient-bg {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        }
        .text-shadow {
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        @media (max-width: 768px) {
            .mobile-stack {
                flex-direction: column;
            }
        }
