
        body { font-family: 'Inter', sans-serif; }
        /* Hero Image Breathing Glow Effect */
        .hero-glow {
            filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.3));
            animation: breathe 4s infinite ease-in-out;
        }
        @keyframes breathe {
            0% { filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.2)); }
            50% { filter: drop-shadow(0 0 50px rgba(59, 130, 246, 0.5)); }
            100% { filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.2)); }
        }
    