.elementor-47168 .elementor-element.elementor-element-1c1c17ff{--display:flex;overflow:visible;}/* Start custom CSS for text-editor, class: .elementor-element-38de2acd *//* ==================== BRAND IDENTITY ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --fresh-green: #4CAF50;
            --fresh-green-dark: #388E3C;
            --fresh-green-light: #81C784;
            --deep-charcoal: #2c3e50;
            --warm-coral: #FF6B6B;
            --warm-orange: #FF8C42;
            --off-white: #F8F9FA;
            --light-gray: #E9ECEF;
            --white: #FFFFFF;
            --black: #1a1a1a;
            
            --font-headline: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-accent: 'Playfair Display', Georgia, serif;
            
            --max-width: 1200px;
            --border-radius: 8px;
            --shadow: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        body {
            font-family: var(--font-body);
            line-height: 1.6;
            color: var(--deep-charcoal);
            background: var(--white);
            overflow-x: hidden;
            width: 100%;
            margin: 0;
            padding: 0;
        }
        
        html {
            overflow-x: hidden;
            width: 100%;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-headline);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--deep-charcoal);
        }
        
        h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
        }
        
        h2 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
        }
        
        h3 {
            font-size: clamp(1.25rem, 3vw, 1.75rem);
        }
        
        h4 {
            font-size: 1.25rem;
            font-weight: 600;
        }
        
        p {
            margin-bottom: 1rem;
            color: var(--deep-charcoal);
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        /* ==================== BUTTONS ==================== */
        .btn {
            display: inline-block;
            padding: 18px 40px;
            font-family: var(--font-headline);
            font-size: 1.1rem;
            font-weight: 700;
            text-align: center;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            letter-spacing: 0.5px;
            text-decoration: none;
            line-height: 1.2;
            box-sizing: border-box;
        }
        
        .btn-primary {
            background: var(--warm-coral);
            color: var(--white);
            box-shadow: var(--shadow);
            border: none;
        }
        
        .btn-primary:hover {
            background: #E85555;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: var(--white);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--fresh-green);
            border: 2px solid var(--fresh-green);
        }
        
        .btn-secondary:hover {
            background: var(--fresh-green);
            color: var(--white);
            border: 2px solid var(--fresh-green);
        }
        
        .btn-green {
            background: var(--fresh-green);
            color: var(--white);
            box-shadow: var(--shadow);
            border: none;
        }
        
        .btn-green:hover {
            background: var(--fresh-green-dark);
            transform: translateY(-2px);
            color: var(--white);
        }
        
        .btn-large {
            padding: 22px 50px;
            font-size: 1.3rem;
        }
        
        /* ==================== LAYOUT ==================== */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
            box-sizing: border-box;
        }
        
        .section {
            padding: 80px 0;
            width: 100%;
            max-width: 100%;
            margin-left: 0;
            margin-right: 0;
            box-sizing: border-box;
        }
        
        .section-light {
            background: var(--off-white);
            width: 100%;
            max-width: 100%;
        }
        
        .text-center {
            text-align: center;
        }
        
        /* ==================== HERO ==================== */
        .hero {
            background: var(--white);
            color: var(--deep-charcoal);
            padding: 100px 20px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            width: 100% !important;
            max-width: 100% !important;
            margin: 0 !important;
            box-sizing: border-box;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(76, 175, 80, 0.03) 0%, rgba(255,255,255,0) 100%);
            opacity: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero h1 {
            margin-bottom: 25px;
            line-height: 1.15;
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--deep-charcoal);
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .hero-cta {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin: 40px 0;
        }
        
        /* ==================== FEATURE CARDS ==================== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-card {
            background: var(--white);
            padding: 35px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            margin-bottom: 15px;
            color: var(--fresh-green);
        }
        
        .feature-card p {
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .feature-card ul {
            list-style: none;
            padding: 0;
            margin: 20px 0 0 0;
        }
        
        .feature-card li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            line-height: 1.6;
        }
        
        .feature-card li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--fresh-green);
            font-weight: bold;
        }
        
        /* ==================== WHO SECTION ==================== */
        .who-box {
            background: var(--white);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 30px 0;
        }
        
        .who-box h3 {
            color: var(--fresh-green);
            margin-bottom: 25px;
        }
        
        .who-box ul {
            list-style: none;
            padding: 0;
        }
        
        .who-box li {
            padding: 15px 0;
            padding-left: 30px;
            position: relative;
            line-height: 1.7;
        }
        
        .who-box li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--fresh-green);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .who-box strong {
            color: var(--deep-charcoal);
            font-weight: 600;
        }
        
        /* ==================== CURRICULUM ==================== */
        .curriculum-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .curriculum-week {
            background: var(--white);
            padding: 35px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border-left: 5px solid var(--fresh-green);
        }
        
        .week-number {
            color: var(--fresh-green);
            font-family: var(--font-headline);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .curriculum-week h3 {
            margin-bottom: 15px;
        }
        
        .curriculum-week ul {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .curriculum-week li {
            padding: 8px 0;
            padding-left: 20px;
            position: relative;
            font-size: 1rem;
        }
        
        .curriculum-week li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--fresh-green);
            font-weight: bold;
        }
        
        .outcome {
            background: var(--off-white);
            padding: 15px 20px;
            border-radius: 5px;
            margin-top: 20px;
            font-style: italic;
            border-left: 3px solid var(--fresh-green);
        }
        
        .outcome strong {
            color: var(--fresh-green);
            font-weight: 600;
        }
        
        /* ==================== MODULE CONTENT ==================== */
        .modules-grid {
            display: grid;
            gap: 40px;
            margin-top: 50px;
        }
        
        .module-card {
            background: var(--white);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        
        .module-card h3 {
            color: var(--fresh-green);
            margin-bottom: 20px;
        }
        
        /* ==================== TESTIMONIALS ==================== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .testimonial-card {
            background: var(--white);
            padding: 35px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            color: var(--fresh-green-light);
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--fresh-green);
        }
        
        /* ==================== PRICING ==================== */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .pricing-card {
            background: var(--white);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            position: relative;
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .pricing-card.featured {
            border-color: var(--warm-coral);
            transform: scale(1.05);
        }
        
        .pricing-badge {
            background: var(--warm-coral);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .pricing-title {
            font-size: 1.75rem;
            margin-bottom: 15px;
        }
        
        .pricing-price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--fresh-green);
            margin-bottom: 10px;
            font-family: var(--font-headline);
        }
        
        .pricing-subtitle {
            color: #666;
            margin-bottom: 30px;
        }
        
        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        
        .pricing-features li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            line-height: 1.6;
        }
        
        .pricing-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--fresh-green);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .pricing-cta {
            margin-top: 30px;
        }
        
        .pricing-note {
            text-align: center;
            margin-top: 40px;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--deep-charcoal);
        }
        
        /* ==================== FAQ ==================== */
        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .faq-item {
            background: var(--white);
            margin-bottom: 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 25px;
            font-size: 1.2rem;
            font-weight: 600;
            font-family: var(--font-headline);
            color: var(--deep-charcoal);
        }
        
        .faq-answer {
            padding: 0 25px 25px;
            line-height: 1.8;
        }
        
        /* ==================== CTA SECTION ==================== */
        .cta-section {
            background: linear-gradient(135deg, var(--fresh-green) 0%, var(--fresh-green-dark) 100%);
            color: var(--white);
            padding: 80px 20px;
            text-align: center;
            width: 100% !important;
            max-width: 100% !important;
            margin: 0 !important;
            box-sizing: border-box;
        }
        
        .cta-section h2 {
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .cta-section p {
            color: rgba(255,255,255,0.95);
            font-size: 1.2rem;
            margin-bottom: 40px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn-white {
            background: var(--white);
            color: var(--fresh-green);
        }
        
        .btn-white:hover {
            background: var(--off-white);
            color: var(--fresh-green-dark);
        }
        
        /* ==================== COMPARISON TABLE ==================== */
        .comparison-table {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            margin: 50px auto;
            max-width: 900px;
        }
        
        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .comparison-table th,
        .comparison-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .comparison-table th {
            background: var(--fresh-green);
            color: var(--white);
            font-family: var(--font-headline);
            font-weight: 700;
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .comparison-table strong {
            color: var(--fresh-green);
        }
        
        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }
            
            .hero {
                padding: 60px 20px 50px;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .features-grid,
            .curriculum-grid,
            .testimonials-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
        }
        
        /* ==================== GLOBAL OVERRIDES ==================== */
        .btn,
        .pricing-card,
        .feature-card,
        .testimonial-card,
        .faq-item,
        .who-box,
        .curriculum-week,
        .module-card {
            border-radius: 8px !important;
            -webkit-border-radius: 8px !important;
            -moz-border-radius: 8px !important;
        }/* End custom CSS */