/* Base page styling */
        body {
            background-color: #F8FAFB; /* Mist White */
            color: #2D4E58; /* Deep Sea Blue for readability */
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Glassmorphism Effect */
        .glass {
            backdrop-filter: blur(10px);
            background-color: rgba(248, 250, 251, 0.5); /* Mist White with 50% opacity */
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        }
        
        /* Floating Wave Background Animation */
        @keyframes floatWave1 {
            0% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
            50% { transform: translate(-10vw, 15vh) rotate(5deg); opacity: 0.8; }
            100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
        }
        @keyframes floatWave2 {
            0% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
            50% { transform: translate(15vw, -10vh) rotate(-3deg); opacity: 0.7; }
            100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
        }

        .wave-shape-1 {
            animation: floatWave1 30s infinite ease-in-out;
        }
        .wave-shape-2 {
            animation: floatWave2 35s infinite ease-in-out reverse;
        }

        /* Custom Soft Shadow Button */
        .btn-soft-teal {
            background-color: #6CB7B5; /* Ocean Teal */
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(108, 183, 181, 0.4);
        }
        .btn-soft-teal:hover {
            background-color: #5aa09d;
            box-shadow: 0 8px 20px rgba(108, 183, 181, 0.6);
            transform: translateY(-2px);
        }

        /* Slow fade-in for page content */
        .fade-in {
            opacity: 0;
            animation: fadeIn 0.8s ease-out forwards;
        }
        @keyframes fadeIn {
            to { opacity: 1; }
        }

        /* Parallax/Wave effect for Hero */
        #hero-background {
            background-image: url('https://i.pinimg.com/736x/85/af/3c/85af3c2fc311a3d102b9e8176ddcd972.jpg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            will-change: transform;
        }
