
        /* Custom Animation for Wellness Vibe */
        .soft-glow { 
            box-shadow: 0 0 30px rgba(16, 185, 129, 0.2); /* Greenish/Calm glow */
            animation: breathe 4s infinite ease-in-out; 
        }
        @keyframes breathe { 
            0% { transform: scale(1); box-shadow: 0 0 25px rgba(16, 185, 129, 0.2); } 
            50% { transform: scale(1.01); box-shadow: 0 0 40px rgba(16, 185, 129, 0.4); } 
            100% { transform: scale(1); box-shadow: 0 0 25px rgba(16, 185, 129, 0.2); } 
        }
        html { scroll-behavior: smooth; }
    