
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #6B5B95;
            --secondary: #88B04B;
            --accent: #F7CAC9;
            --light: #FDF8F5;
            --dark: #2D2D2D;
            --sage: #9DC183;
        }
        body { font-family: 'Montserrat', sans-serif; background: var(--light); color: var(--dark); }
        nav { background: white; padding: 1.2rem 2rem; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
        nav ul { list-style: none; display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
        nav a { color: var(--dark); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
        nav a:hover { color: var(--primary); }
        /* Hero */
        .hero { background: linear-gradient(135deg, var(--primary) 0%, #4A4063 100%); min-height: 85vh; display: flex; align-items: center; position: relative; overflow: hidden; }
        .hero-image-bg { position: absolute; right: -5%; top: 10%; width: 55%; height: 80%; border-radius: 50% 0 0 50%; opacity: 0.4; }
        .hero-content { max-width: 1400px; margin: 0 auto; padding: 4rem 2rem; position: relative; z-index: 1; }
        .hero-text { max-width: 600px; }
        .hero-text h1 { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: white; margin-bottom: 1.5rem; line-height: 1.1; }
        .hero-text p { font-size: 1.2rem; color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; line-height: 1.8; }
        .hero-btns { display: flex; gap: 1rem; }
        .btn { padding: 1rem 2.5rem; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.3s; display: inline-block; }
        .btn-primary { background: var(--secondary); color: white; }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        .btn-outline { border: 2px solid white; color: white; }
        .btn-outline:hover { background: white; color: var(--primary); }
        /* Features */
        .features { padding: 6rem 2rem; background: white; }
        .container { max-width: 1200px; margin: 0 auto; }
        .section-title { text-align: center; margin-bottom: 4rem; }
        .section-title h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--dark); margin-bottom: 0.5rem; }
        .section-title p { color: #888; font-size: 1.05rem; }
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
        .feature-card { text-align: center; padding: 2.5rem; border-radius: 20px; transition: all 0.3s; }
        .feature-card:hover { background: var(--light); transform: translateY(-5px); }
        .feature-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--accent) 0%, var(--sage) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; }
        .feature-card h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--dark); }
        .feature-card p { color: #777; line-height: 1.7; }
        /* Classes */
        .classes { padding: 6rem 2rem; background: linear-gradient(180deg, var(--light) 0%, white 100%); }
        .class-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
        .class-card { background: white; border-radius: 25px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.08); transition: transform 0.3s; }
        .class-card:hover { transform: translateY(-10px); }
        .class-image { height: 220px; overflow: hidden; }
        .class-image img { width: 100%; height: 100%; object-fit: cover; }
        .class-content { padding: 2rem; }
        .class-tag { display: inline-block; background: var(--secondary); color: white; padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1rem; }
        .class-content h3 { font-size: 1.4rem; margin-bottom: 0.8rem; color: var(--dark); }
        .class-content p { color: #777; line-height: 1.7; font-size: 0.95rem; margin-bottom: 1rem; }
        .class-meta { display: flex; gap: 1rem; color: var(--primary); font-size: 0.9rem; font-weight: 500; }
        /* CTA */
        .cta { background: linear-gradient(135deg, var(--primary) 0%, #4A4063 100%); padding: 6rem 2rem; text-align: center; color: white; }
        .cta h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; margin-bottom: 1rem; }
        .cta p { font-size: 1.15rem; margin-bottom: 2rem; opacity: 0.9; }
        .cta .phone { font-size: 2.5rem; font-weight: 700; margin-bottom: 2rem; display: block; }
        footer { background: var(--dark); color: white; padding: 3rem 2rem; text-align: center; }
        footer .company { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; margin-bottom: 0.5rem; }
        footer p { opacity: 0.7; }
        @media (max-width: 768px) {
            .hero-text h1 { font-size: 2.5rem; }
            .hero::before { display: none; }
            .class-grid { grid-template-columns: 1fr; }
        }
    