.elementor-47215 .elementor-element.elementor-element-6c030d2d{--display:flex;overflow:visible;}/* Start custom CSS for text-editor, class: .elementor-element-7064c75b *//* ==================== 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);
        }
        
        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;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
        }
        
        h3 {
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        
        h4 {
            font-size: 1.25rem;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }
        
        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);
        }
        
        /* ==================== 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: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--deep-charcoal);
            opacity: 0.9;
            margin-bottom: 2rem;
            font-family: var(--font-body);
        }
        
        /* ==================== ARTICLE CONTENT ==================== */
        .article-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .content-block {
            background: var(--white);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        
        .highlight-box {
            background: var(--off-white);
            padding: 30px;
            border-left: 4px solid var(--fresh-green);
            border-radius: var(--border-radius);
            margin: 30px 0;
        }
        
        .highlight-box strong {
            color: var(--fresh-green-dark);
            font-size: 1.15rem;
        }
        
        /* ==================== COMPARISON TABLE ==================== */
        .table-wrapper {
            overflow-x: auto;
            margin: 40px 0;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
        }
        
        thead {
            background: var(--fresh-green);
            color: var(--white);
        }
        
        thead th {
            padding: 20px;
            text-align: left;
            font-family: var(--font-headline);
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        tbody tr {
            border-bottom: 1px solid var(--light-gray);
        }
        
        tbody tr:last-child {
            border-bottom: none;
        }
        
        tbody tr:nth-child(even) {
            background: var(--off-white);
        }
        
        tbody td {
            padding: 20px;
            vertical-align: top;
        }
        
        tbody td:first-child {
            font-weight: 600;
            color: var(--deep-charcoal);
        }
        
        /* ==================== LISTS ==================== */
        ul, ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        li {
            margin-bottom: 12px;
            line-height: 1.7;
            font-size: 1.1rem;
        }
        
        .checklist {
            list-style: none;
            padding-left: 0;
        }
        
        .checklist li {
            padding-left: 35px;
            position: relative;
        }
        
        .checklist li:before {
            content: "✓";
            color: var(--fresh-green);
            font-weight: bold;
            font-size: 1.3rem;
            position: absolute;
            left: 0;
            top: -2px;
        }
        
        /* ==================== CARDS ==================== */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .card {
            background: var(--white);
            padding: 35px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .card h3 {
            color: var(--fresh-green-dark);
            margin-top: 0;
        }
        
        /* ==================== 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-links {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .cta-link {
            background: var(--white);
            color: var(--fresh-green-dark);
            padding: 25px 40px;
            border-radius: var(--border-radius);
            font-family: var(--font-headline);
            font-weight: 700;
            font-size: 1.15rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            display: block;
        }
        
        .cta-link:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            background: var(--off-white);
        }
        
        .cta-link-desc {
            display: block;
            font-size: 0.95rem;
            font-weight: 400;
            color: var(--deep-charcoal);
            margin-top: 8px;
            font-family: var(--font-body);
        }
        
        /* ==================== BLOCKQUOTE ==================== */
        blockquote {
            background: var(--off-white);
            border-left: 5px solid var(--warm-coral);
            padding: 25px 30px;
            margin: 30px 0;
            font-style: italic;
            border-radius: var(--border-radius);
        }
        
        blockquote p {
            margin-bottom: 10px;
        }
        
        blockquote strong {
            color: var(--warm-coral);
            font-style: normal;
        }
        
        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }
            
            .hero {
                padding: 60px 20px 50px;
            }
            
            .content-block {
                padding: 25px;
            }
            
            .card-grid {
                grid-template-columns: 1fr;
            }
            
            table {
                font-size: 0.95rem;
            }
            
            thead th,
            tbody td {
                padding: 15px;
            }
        }/* End custom CSS */