        .hover-scale {
            transition: transform 0.3s ease;
        }
        .hover-scale:hover {
            transform: scale(1.05);
        }
        .flink {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: #f3f4f6;
            border: 2px solid #d1d5db;
            border-radius: 0.5rem;
            color: #374151;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: #1e40af;
            border-color: #1e40af;
            color: white;
            transform: translateY(-2px);
        }
        .gradient-bg {
            background: linear-gradient(135deg, #1e40af 0%, #dc2626 100%);
        }
        .text-shadow {
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .card-hover {
            transition: box-shadow 0.3s ease;
        }
        .card-hover:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        @media (max-width: 768px) {
            .hero-text {
                font-size: 2rem;
            }
        }
