.elementor-47212 .elementor-element.elementor-element-d79c505{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}/* Start custom CSS for text-editor, class: .elementor-element-b455a71 *//* ==================== 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: var(--fresh-green);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--fresh-green-dark);
            text-decoration: underline;
        }
        
        /* External links get special styling */
        a[target="_blank"]::after {
            content: " ↗";
            font-size: 0.85em;
            vertical-align: super;
        }
        
        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;
            margin-bottom: 1.5rem;
        }
        
        h2 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            color: var(--fresh-green-dark);
        }
        
        h3 {
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: var(--deep-charcoal);
        }
        
        p {
            margin-bottom: 1.5rem;
            color: var(--deep-charcoal);
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        strong {
            font-weight: 700;
            color: var(--fresh-green-dark);
        }
        
        /* ==================== 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);
            text-decoration: none;
        }
        
        .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);
            text-decoration: none;
        }
        
        /* ==================== 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%;
        }
        
        /* ==================== BLOG POST SPECIFIC ==================== */
        .blog-header {
            background: linear-gradient(135deg, var(--fresh-green) 0%, var(--fresh-green-dark) 100%);
            color: var(--white);
            padding: 120px 20px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 100%;
        }
        
        .blog-header h1 {
            color: var(--white);
            max-width: 900px;
            margin: 0 auto 20px;
        }
        
        .blog-meta {
            color: rgba(255,255,255,0.9);
            font-size: 1rem;
            font-style: italic;
        }
        
        .blog-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        .blog-content > p:first-of-type {
            font-size: 1.25rem;
            color: var(--deep-charcoal);
            font-style: italic;
            line-height: 1.8;
        }
        
        .highlight-box {
            background: var(--off-white);
            border-left: 4px solid var(--fresh-green);
            padding: 30px;
            margin: 40px 0;
            border-radius: var(--border-radius);
        }
        
        .highlight-box p {
            margin-bottom: 0;
            font-size: 1.15rem;
            line-height: 1.8;
        }
        
        .info-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 35px;
            margin: 40px 0;
            box-shadow: var(--shadow);
        }
        
        .info-card h3 {
            margin-top: 0;
            color: var(--fresh-green-dark);
        }
        
        .timeline-item {
            margin: 25px 0;
            padding-left: 25px;
            border-left: 3px solid var(--fresh-green-light);
        }
        
        .timeline-item strong {
            display: block;
            font-size: 1.2rem;
            color: var(--fresh-green-dark);
            margin-bottom: 8px;
        }
        
        ul {
            margin: 25px 0;
            padding-left: 25px;
        }
        
        ul li {
            margin-bottom: 15px;
            line-height: 1.8;
            font-size: 1.1rem;
            color: var(--deep-charcoal);
        }
        
        .cta-box {
            background: linear-gradient(135deg, var(--fresh-green) 0%, var(--fresh-green-dark) 100%);
            color: var(--white);
            padding: 50px 40px;
            border-radius: var(--border-radius);
            text-align: center;
            margin: 60px 0;
            box-shadow: var(--shadow-lg);
        }
        
        .cta-box h2 {
            color: var(--white);
            margin-top: 0;
            margin-bottom: 20px;
        }
        
        .cta-box p {
            color: rgba(255,255,255,0.95);
            font-size: 1.15rem;
            margin-bottom: 30px;
        }
        
        .cta-box ul {
            text-align: left;
            max-width: 600px;
            margin: 30px auto;
            color: var(--white);
        }
        
        .cta-box ul li {
            color: rgba(255,255,255,0.95);
        }
        
        .cta-box a {
            color: var(--white);
        }
        
        .final-cta {
            background: var(--off-white);
            padding: 60px 40px;
            border-radius: var(--border-radius);
            text-align: center;
            margin: 60px 0 0;
        }
        
        .final-cta h2 {
            margin-top: 0;
        }
        
        .final-cta ol {
            text-align: left;
            max-width: 600px;
            margin: 30px auto;
            padding-left: 30px;
        }
        
        .final-cta ol li {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .final-cta p:last-of-type {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--fresh-green-dark);
            margin-top: 40px;
        }
        
        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }
            
            .blog-header {
                padding: 80px 20px 60px;
            }
            
            .blog-content {
                padding: 40px 20px;
            }
            
            .cta-box {
                padding: 40px 25px;
            }
            
            .final-cta {
                padding: 40px 25px;
            }
            
            h2 {
                margin-top: 2rem;
            }
            
            .btn {
                width: 100%;
                max-width: 350px;
            }
        }/* End custom CSS */