        :root {
            --primary: #A8DF8E;
            --secondary: #40513B;
            --accent: #F39EB6;
            --bg-light: #F7F7F7;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: white;
            color: var(--secondary);
            overflow-x: hidden;
        }

        .heading-cursive {
            font-family: "Playwrite NG Modern", cursive;
        }

        /* Hero Animations */
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }

        .floating-shape {
            animation: float 6s ease-in-out infinite;
        }

        .hero-bg {
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .hero-bg::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(var(--primary) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.05;
        }

        /* Custom UI Elements */
        .btn-accent {
            background-color: var(--accent);
            color: white;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 13px;
        }
        .btn-accent:hover {
            background-color: #e28da5;
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(243, 158, 182, 0.3);
        }

        .btn-outline-green {
            border: 2px solid var(--primary);
            color: var(--secondary);
            padding: 10px 32px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 13px;
        }
        .btn-outline-green:hover {
            background-color: var(--primary);
            color: white;
        }

        .service-card {
            background: white;
            border-radius: 24px;
            padding: 40px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid #f0f0f0;
        }
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(64, 81, 59, 0.1);
            border-color: var(--accent);
        }

        /* Wave Divider */
        .wave-divider {
            width: 100%;
            height: 100px;
            fill: var(--bg-light);
        }

        /* Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Modal */
        .modal {
            position: fixed;
            inset: 0;
            background: rgba(64, 81, 59, 0.85);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            backdrop-filter: blur(8px);
        }
        .modal.active { display: flex; }

        .auth-card {
            background: white;
            width: 100%;
            max-width: 450px;
            border-radius: 30px;
            padding: 50px;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.2);
        }

        nav a {
            position: relative;
            cursor: pointer;
        }
        nav a::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }
        nav a:hover::after { width: 100%; }
