
        /* Custom subtle breathing animation for the hero image */
        @keyframes subtle-breath {
            0%, 100% { transform: scale(1); box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); }
            50% { transform: scale(1.01); box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.15); }
        }
        .hero-image-animate {
            animation: subtle-breath 6s infinite ease-in-out;
        }
    