        .flink {
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            background-color: #f3f4f6;
            color: #4b5563;
            text-decoration: none;
            display: inline-block;
            margin: 0.25rem;
        }
        .flink:hover {
            background-color: #1e40af;
            color: white;
            transform: translateY(-2px);
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .section-padding {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #f59e0b;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .footer-links a {
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #f59e0b;
        }
