.flink a {
            transition: all 0.3s ease;
            border-radius: 8px;
            padding: 10px 15px;
            display: inline-block;
            background-color: #f8f9fa;
            color: #333;
            text-decoration: none;
            margin: 5px;
        }
        .flink a:hover {
            background-color: #007bff;
            color: white;
            transform: translateY(-3px);
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .section-padding {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }
        }
