

        body { font-family: 'Inter', sans-serif; }

        .hero-image-shadow { filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15)); }

        .breathing-glow { animation: pulse-glow 3s infinite alternate; }

        @keyframes pulse-glow {

            0% { box-shadow: 0 0 15px rgba(59, 130, 246, 0.2); }

            100% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.5); }

        }

    