        :root {
            --aqua: #E0F7F1;
            --coral: #FF6F61;
            --deep-green: #3A6B35;
            --dark-gray: #1A1A1A;
        }

        body {
            font-family: 'Quicksand', sans-serif;
            background-color: #FFFFFF;
            color: var(--dark-gray);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, .heading-font {
            font-family: 'Rubik Wet Paint', cursive;
        }

        /* Hero Layered 3D Styles */
        .hero-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, var(--aqua) 0%, #ffffff 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            z-index: 1;
            animation: drift 15s infinite alternate ease-in-out;
        }

        @keyframes drift {
            from { transform: translate(0, 0) rotate(0deg); }
            to { transform: translate(50px, 100px) rotate(20deg); }
        }

        .parallax-bg {
            position: absolute;
            inset: 0;
            background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?q=80&w=2070') center/cover;
            opacity: 0.1;
            filter: blur(4px);
            z-index: 0;
            transform: scale(1.1);
        }

        /* Floating Hero Cards */
        .floating-card {
            background: white;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            border: 2px solid transparent;
        }

        .floating-card:hover {
            transform: scale(1.05) rotate(2deg);
            border-color: var(--coral);
            box-shadow: 0 15px 40px rgba(255, 111, 97, 0.2);
        }

        /* Flip Cards */
        .flip-card {
            perspective: 1000px;
            height: 350px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .flip-card-back {
            background-color: var(--deep-green);
            color: white;
            transform: rotateY(180deg);
        }

        /* Utility */
        .page { display: none; }
        .page.active { display: block; animation: pageFade 0.6s ease-out; }

        @keyframes pageFade {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .btn-coral { background-color: var(--coral); color: white; transition: 0.3s; }
        .btn-coral:hover { background-color: #e65b50; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255,111,97,0.3); }

        .reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* Navigation Glow */
        .nav-item:hover { color: var(--coral); text-shadow: 0 0 10px rgba(255,111,97,0.2); }
    