        :root {
            --primary: #E6E6FA;
            --secondary: #F0FFF0;
            --accent: #7B9E87;
            --text: #3D4A3E;
        }
        body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--secondary); }
        .hero {
            background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 7rem 0 5rem;
            text-align: center;
        }
        .section { padding: 5rem 0; }
        .section-lavender { background: var(--primary); }
        .benefit-icon {
            width: 70px; height: 70px;
            background: white;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.8rem;
            box-shadow: 0 4px 15px rgba(123,158,135,0.1);
        }
        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 2px 15px rgba(0,0,0,0.04);
            border-left: 4px solid var(--accent);
        }
        .price-badge {
            background: var(--accent);
            color: white;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
        }
        .btn-glow {
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 14px 36px;
            transition: all 0.3s ease;
        }
        .btn-glow:hover { background: #5C7D66; color: white; box-shadow: 0 8px 25px rgba(123,158,135,0.3); }
        .fade-in { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }
        footer { background: var(--accent); color: white; }
