  /* --- SUSTAINABLE LIVING BRAND DESIGN SYSTEM --- */
        :root {
            --primary-green: #48A111;
            --forest-green: #25671E;
            --soft-bg: #F7F0F0;
            --muted-sage: #A5C89E;
            --deep-teal: #36656B;
            --text-dark: #1E2B19;
            --text-light: #F7F0F0;
            --font-main: 'Space Grotesk', sans-serif;
            --radius-editorial: 24px;
            --radius-button: 50px;
            --transition-smooth: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-snug: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --shadow-soft: 0 20px 40px rgba(37, 103, 30, 0.04);
        }

        /* --- GLOBAL EDITORIAL RESET --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--soft-bg);
            color: var(--text-dark);
            font-family: var(--font-main);
            font-weight: 400;
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: var(--forest-green);
        }
        p {
            color: #3D4A38;
            font-weight: 400;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-editorial);
            transition: var(--transition-smooth);
        }
        img:hover {
            transform: scale(1.02);
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-snug);
        }
        button, input, textarea {
            font-family: var(--font-main);
            background: transparent;
            border: none;
            outline: none;
        }

        /* --- MAGAZINE UTILITY LAYOUTS --- */
        .editorial-chapter {
            width: 100%;
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .editorial-chapter.active-chapter {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        .section-padding {
            padding: 140px 0;
        }
        .editorial-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }
        .text-white {
            color: var(--text-light) !important;
        }
        .text-white p, .text-white h2, .text-white h3, .text-white h4 {
            color: var(--text-light) !important;
        }
        
        /* --- HIGH-END STICKY HEADER & COMPACT ACTIONS --- */
        header.global-header {
            position: fixed;
            top: 0; left: 0; width: 100%;
            z-index: 2000;
            background: var(--soft-bg);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 35px 60px;
            border-bottom: 1px solid rgba(37, 103, 30, 0.06);
            transition: var(--transition-smooth);
        }
        header.global-header.shrunk {
            padding: 20px 60px;
            box-shadow: 0 10px 30px rgba(37, 103, 30, 0.03);
        }
        .brand-logo {
            font-size: 3.65rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--forest-green);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .brand-logo span {
            color: var(--primary-green);
        }
        
        nav.center-nav ul {
            display: flex;
            list-style: none;
            gap: 45px;
        }
        nav.center-nav ul li a {
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--text-dark);
            position: relative;
            padding: 6px 0;
        }
        nav.center-nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 0; height: 2px;
            background-color: var(--primary-green);
            transition: var(--transition-snug);
        }
        nav.center-nav ul li a:hover {
            color: var(--primary-green);
        }
        nav.center-nav ul li a:hover::after,
        nav.center-nav ul li a.active-link::after {
            width: 100%;
        }
        nav.center-nav ul li a.active-link {
            color: var(--primary-green);
        }
        
        .right-actions {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .btn-contact-header {
            background-color: var(--primary-green);
            color: var(--text-light);
            padding: 14px 30px;
            border-radius: var(--radius-button);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition-snug);
        }
        .btn-contact-header:hover {
            background-color: var(--forest-green);
            transform: translateY(-1px);
        }
        .search-trigger-icon {
            cursor: pointer;
            display: flex;
            align-items: center;
            color: var(--text-dark);
            transition: var(--transition-snug);
        }
        .search-trigger-icon:hover {
            color: var(--primary-green);
        }

        /* --- MOBILE BURGER CONFIGURATIONS --- */
        .hamburger-menu-icon {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 3000;
        }
        .hamburger-menu-icon span {
            width: 28px;
            height: 2.5px;
            background-color: var(--forest-green);
            border-radius: 2px;
            transition: var(--transition-snug);
        }
        .hamburger-menu-icon.active-burger span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
        .hamburger-menu-icon.active-burger span:nth-child(2) { opacity: 0; }
        .hamburger-menu-icon.active-burger span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

        .mobile-navigation-portal {
            position: fixed;
            top: 0; left: 0; width: 100vw; height: 100vh;
            background: var(--soft-bg);
            z-index: 1500;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 35px;
            transform: translateX(100%);
            transition: var(--transition-smooth);
        }
        .mobile-navigation-portal.portal-visible { transform: translateX(0); }
        .mobile-navigation-portal a {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--forest-green);
        }
        .mobile-navigation-portal a:hover {
            color: var(--primary-green);
        }

        /* --- BUTTON SYSTEM --- */
        .primary-action-btn {
            background-color: var(--forest-green);
            color: var(--text-light);
            padding: 18px 38px;
            border-radius: var(--radius-button);
            font-weight: 500;
            display: inline-block;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(37, 103, 30, 0.15);
            transition: var(--transition-snug);
        }
        .primary-action-btn:hover {
            background-color: var(--primary-green);
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(72, 161, 17, 0.2);
        }
        .secondary-action-btn {
            border: 2px solid var(--forest-green);
            color: var(--forest-green);
            padding: 16px 36px;
            border-radius: var(--radius-button);
            font-weight: 500;
            display: inline-block;
            cursor: pointer;
            transition: var(--transition-snug);
        }
        .secondary-action-btn:hover {
            background-color: var(--forest-green);
            color: var(--text-light);
            transform: translateY(-2px);
        }

        /* ================= HOME PAGE LAYOUTS ================= */
        .hero-layout {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 120px;
            background-color: var(--soft-bg);
        }
        .hero-split {
            display: grid;
            grid-template-columns: 5.5fr 4.5fr;
            gap: 80px;
            align-items: center;
            width: 100%;
        }
        .hero-left h1 {
            font-size: 4.8rem;
            color: var(--forest-green);
            margin-bottom: 30px;
            line-height: 1.1;
        }
        .hero-left p {
            font-size: 1.35rem;
            color: #4A5644;
            margin-bottom: 45px;
            max-width: 620px;
        }
        .hero-cta-group {
            display: flex;
            gap: 20px;
        }
        .hero-right-frame {
            position: relative;
        }
        .hero-right-frame img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            box-shadow: var(--shadow-soft);
        }
        .floating-stat-badge {
            position: absolute;
            background: rgba(255, 255, 255, 0.96);
            padding: 18px 26px;
            border-radius: 18px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--forest-green);
            animation: softFloat 5s infinite alternate ease-in-out;
        }
        .badge-pos-1 { top: 50px; left: -40px; animation-delay: 0s; }
        .badge-pos-2 { bottom: 90px; right: -30px; animation-delay: 1.2s; }
        .badge-pos-3 { bottom: 250px; left: -50px; animation-delay: 2.4s; }
        @keyframes softFloat {
            0% { transform: translateY(0); }
            100% { transform: translateY(-15px); }
        }

        /* SECTION 2 – EVERYDAY ENERGY SAVINGS */
        .everyday-savings-strip {
            background-color: var(--muted-sage);
        }
        .section-header-center {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 90px;
        }
        .section-header-center h2 {
            font-size: 3.5rem;
            margin-bottom: 25px;
        }
        .section-header-center p {
            font-size: 1.25rem;
            color: #2F3D2A;
        }
        .alternating-stream {
            display: flex;
            flex-direction: column;
            gap: 100px;
        }
        .stream-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }
        .stream-row:nth-child(even) {
            direction: rtl;
        }
        .stream-row:nth-child(even) .stream-text-pane {
            direction: ltr;
        }
        .stream-image-pane img {
            width: 100%;
            height: 440px;
            object-fit: cover;
            box-shadow: var(--shadow-soft);
        }
        .stream-text-pane h3 {
            font-size: 2.4rem;
            color: var(--forest-green);
            margin-bottom: 22px;
        }
        .stream-text-pane p {
            font-size: 1.2rem;
            color: #2F3D2A;
            margin-bottom: 15px;
        }

        /* SECTION 3 – ENERGY STATISTICS */
        .statistics-canvas {
            background-color: var(--forest-green);
        }
        .statistics-canvas h2 {
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 80px;
        }
        .stats-editorial-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 35px;
        }
        .stat-panel-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 50px 35px;
            border-radius: var(--radius-editorial);
            text-align: center;
            transition: var(--transition-smooth);
        }
        .stat-panel-card:hover {
            background: rgba(255, 255, 255, 0.09);
            transform: translateY(-5px);
        }
        .stat-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            display: block;
        }
        .stat-panel-card .stat-huge-number {
            font-size: 4.2rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 15px;
            line-height: 1;
        }
        .stat-panel-card p {
            font-size: 1.15rem;
            opacity: 0.9;
        }

        /* SECTION 4 – SUSTAINABLE LIVING GUIDE */
        .two-col-guide-layout {
            display: grid;
            grid-template-columns: 5fr 7fr;
            gap: 100px;
        }
        .guide-sticky-media img {
            width: 100%;
            height: 750px;
            object-fit: cover;
            position: sticky;
            top: 160px;
            box-shadow: var(--shadow-soft);
        }
        .guide-narrative-box .guide-block {
            margin-bottom: 45px;
        }
        .guide-narrative-box h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--forest-green);
        }
        .guide-narrative-box p {
            font-size: 1.2rem;
            color: #4A5545;
            margin-bottom: 15px;
        }

        /* SECTION 5 – FEATURED SOLUTIONS */
        .solutions-showcase {
            background-color: var(--deep-teal);
        }
        .solutions-showcase h2 {
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 90px;
        }
        .staggered-solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        .solution-feature-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 50px;
            border-radius: var(--radius-editorial);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: var(--transition-smooth);
        }
        .solution-feature-card:nth-child(1) { min-height: 380px; }
        .solution-feature-card:nth-child(2) { min-height: 440px; margin-top: 30px; }
        .solution-feature-card:nth-child(3) { min-height: 400px; }
        .solution-feature-card:nth-child(4) { min-height: 450px; margin-top: -30px; }
        .solution-feature-card:nth-child(5) { min-height: 390px; }
        .solution-feature-card:nth-child(6) { min-height: 430px; margin-top: 10px; }

        .solution-feature-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }
        .solution-feature-card h4 {
            font-size: 1.9rem;
            margin-bottom: 18px;
        }
        .solution-feature-card p {
            font-size: 1.15rem;
            opacity: 0.85;
            line-height: 1.6;
        }

        /* SECTION 6 – HOME EFFICIENCY TIMELINE */
        .timeline-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            padding-left: 60px;
        }
        .timeline-container::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 10px;
            bottom: 10px;
            width: 3px;
            background-color: var(--muted-sage);
        }
        .timeline-step-node {
            position: relative;
            margin-bottom: 80px;
        }
        .timeline-step-node:last-child {
            margin-bottom: 0;
        }
        .timeline-graphic-marker {
            position: absolute;
            left: -57px;
            top: 5px;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background-color: var(--soft-bg);
            border: 4px solid var(--primary-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--forest-green);
        }
        .timeline-step-node h4 {
            font-size: 2rem;
            color: var(--forest-green);
            margin-bottom: 15px;
        }
        .timeline-step-node p {
            font-size: 1.2rem;
            color: #4A5545;
            max-width: 800px;
        }

        /* SECTION 7 – FULL-WIDTH HIGHLIGHT */
        .parallax-highlight-viewport {
            height: 80vh;
            background: linear-gradient(rgba(37, 103, 30, 0.45), rgba(54, 101, 107, 0.6)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1920&q=80') center center no-repeat;
            background-size: cover;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 40px;
        }
        .parallax-content h3 {
            font-size: 3.4rem;
            font-weight: 700;
            max-width: 1000px;
            margin: 0 auto 30px;
            line-height: 1.25;
        }
        .parallax-content p {
            font-size: 1.4rem;
            margin-bottom: 45px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* SECTION 8 – COMMUNITY STORIES */
        .community-stories-strip {
            background-color: var(--muted-sage);
        }

        /* SECTION 9 – FREQUENTLY ASKED QUESTIONS */
        .faq-accordion-stack {
            max-width: 950px;
            margin: 0 auto;
        }
        .faq-item-node {
            background-color: rgba(255, 255, 255, 0.4);
            border-radius: 20px;
            margin-bottom: 25px;
            overflow: hidden;
            border: 1px solid rgba(37, 103, 30, 0.05);
            transition: var(--transition-snug);
        }
        .faq-item-node:hover {
            background-color: rgba(255, 255, 255, 0.7);
        }
        .faq-trigger-button {
            width: 100%;
            padding: 30px 40px;
            text-align: left;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--forest-green);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        .faq-trigger-button .faq-icon {
            font-size: 1.6rem;
            color: var(--primary-green);
            transition: var(--transition-snug);
        }
        .faq-response-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 0 40px;
            color: #3D4A38;
            font-size: 1.2rem;
            line-height: 1.7;
        }

        /* SECTION 10 – NEWSLETTER */
        .newsletter-editorial-card {
            background-color: var(--primary-green);
            border-radius: var(--radius-editorial);
            padding: 90px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
            box-shadow: var(--shadow-soft);
        }
        .newsletter-editorial-card h2 {
            font-size: 3.4rem;
            margin-bottom: 25px;
        }
        .newsletter-editorial-card p {
            font-size: 1.3rem;
            opacity: 0.95;
            line-height: 1.6;
        }
        .newsletter-input-group {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .editorial-input {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 22px 30px;
            border-radius: var(--radius-button);
            color: var(--text-light);
            font-size: 1.2rem;
            width: 100%;
            transition: var(--transition-snug);
        }
        .editorial-input::placeholder {
            color: rgba(255, 255, 255, 0.55);
        }
        .editorial-input:focus {
            background: rgba(255, 255, 255, 0.22);
            border-color: var(--text-light);
        }
        .newsletter-action-row {
            display: flex;
            gap: 15px;
        }
        .newsletter-submit-btn {
            background-color: var(--forest-green);
            color: var(--text-light);
            padding: 20px 40px;
            border-radius: var(--radius-button);
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            flex: 2;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: var(--transition-snug);
        }
        .newsletter-submit-btn:hover {
            background-color: var(--text-dark);
        }
        .newsletter-unsubscribe-btn {
            background-color: transparent;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: var(--text-light);
            padding: 20px 30px;
            border-radius: var(--radius-button);
            font-weight: 500;
            font-size: 1.1rem;
            cursor: pointer;
            flex: 1;
            text-align: center;
            transition: var(--transition-snug);
        }
        .newsletter-unsubscribe-btn:hover {
            border-color: var(--text-light);
            background: rgba(255, 255, 255, 0.05);
        }
        .subscription-status-msg {
            margin-top: 20px;
            font-size: 1.15rem;
            font-weight: 500;
            padding: 15px 25px;
            border-radius: 12px;
            display: none;
            animation: fadeIn 0.4s ease;
        }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* ================= SUBPAGE ELEMENT LAYOUTS ================= */
        .subpage-hero-banner {
            padding: 220px 0 130px;
            background-color: #EFE6E6;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .subpage-hero-banner h1 {
            font-size: 4.6rem;
            color: var(--forest-green);
            margin-bottom: 25px;
            line-height: 1.1;
        }
        .subpage-hero-banner p {
            font-size: 1.4rem;
            max-width: 850px;
            margin: 0 auto;
            color: #4E5A49;
        }
        .subpage-hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            text-align: left;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }
        .subpage-hero-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            box-shadow: var(--shadow-soft);
        }

        /* CHECKLIST SYSTEM FOR EXTRA LONG CONTENT */
        .checklist-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 60px;
        }
        .checklist-card {
            background: rgba(255, 255, 255, 0.5);
            padding: 40px;
            border-radius: var(--radius-editorial);
            border: 1px solid rgba(37, 103, 30, 0.05);
        }
        .checklist-card h4 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--forest-green);
        }
        .checklist-card ul {
            list-style: none;
        }
        .checklist-card ul li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
            font-size: 1.15rem;
            color: #4A5545;
        }
        .checklist-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-green);
            font-weight: bold;
        }

        /* ENERGY TIPS VIEW SPECIFICS */
        .tips-matrix-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        .tip-editorial-box {
            background: white;
            border-radius: var(--radius-editorial);
            padding: 45px;
            box-shadow: var(--shadow-soft);
            border-top: 4px solid var(--primary-green);
        }
        .tip-editorial-box .tip-num {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-green);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: block;
            margin-bottom: 15px;
        }
        .tip-editorial-box h3 {
            font-size: 1.8rem;
            color: var(--forest-green);
            margin-bottom: 20px;
        }
        .tip-editorial-box p {
            font-size: 1.15rem;
            color: #4A5545;
        }

        /* SOLUTIONS VIEW SPECIFICS */
        .solutions-detailed-stack {
            display: flex;
            flex-direction: column;
            gap: 140px;
        }

        /* RESOURCES VIEW SPECIFICS */
        .resources-layout-grid {
            display: grid;
            grid-template-columns: 7.5fr 4.5fr;
            gap: 80px;
        }
        .resource-article-snippet {
            background: white;
            padding: 50px;
            border-radius: var(--radius-editorial);
            margin-bottom: 40px;
            box-shadow: var(--shadow-soft);
        }
        .resource-article-snippet h3 {
            font-size: 2.1rem;
            margin-bottom: 18px;
        }
        .resource-article-snippet p {
            font-size: 1.2rem;
            color: #4A5545;
            margin-bottom: 20px;
        }
        .resource-meta {
            font-size: 1rem;
            color: var(--deep-teal);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* ABOUT VIEW SPECIFICS */
        .about-milestones-list {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }
        .milestone-row {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid rgba(37, 103, 30, 0.1);
            padding-bottom: 20px;
            font-size: 1.35rem;
            font-weight: 600;
        }
        .milestone-row span:last-child {
            color: var(--primary-green);
        }

        /* CONTACT VIEW SPECIFICS */
        .contact-hub-grid {
            display: grid;
            grid-template-columns: 5fr 7fr;
            gap: 90px;
        }
        .embedded-map-canvas {
            width: 100%;
            height: 400px;
            background-color: var(--muted-sage);
            border-radius: var(--radius-editorial);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--forest-green);
            font-size: 1.2rem;
            letter-spacing: 0.05em;
            box-shadow: var(--shadow-soft);
            text-align: center;
            padding: 30px;
        }
        .embedded-map-canvas span {
            font-size: 0.95rem;
            font-weight: 400;
            color: #2F3D2A;
            margin-top: 10px;
            display: block;
        }

        /* ================= LEGAL CANVAS (PRIVACY/TERMS) ================= */
        .legal-canvas {
            max-width: 950px;
            margin: 0 auto;
            padding: 200px 50px 140px;
            line-height: 1.85;
            color: #3D4A38;
        }
        .legal-canvas h1 {
            font-size: 4.2rem;
            color: var(--forest-green);
            margin-bottom: 45px;
            line-height: 1.1;
        }
        .legal-canvas h2 {
            font-size: 2rem;
            color: var(--deep-teal);
            margin: 55px 0 25px;
            border-bottom: 1px solid var(--muted-sage);
            padding-bottom: 10px;
        }
        .legal-canvas p {
            margin-bottom: 30px;
            font-size: 1.2rem;
            text-align: justify;
        }
        .legal-canvas ul {
            margin-bottom: 30px;
            padding-left: 30px;
        }
        .legal-canvas ul li {
            font-size: 1.2rem;
            margin-bottom: 12px;
        }

        /* ================= GLOBAL FOOTER SYSTEM ================= */
        footer.global-footer {
            background-color: var(--forest-green);
            padding: 120px 0 60px;
        }
        .footer-grid-columns {
            display: grid;
            grid-template-columns: 2.2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 90px;
        }
        .footer-group h5 {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: var(--muted-sage);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .footer-group ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .footer-group ul li a {
            font-size: 1.1rem;
            opacity: 0.85;
            display: inline-block;
        }
        .footer-group ul li a:hover {
            opacity: 1;
            color: var(--primary-green);
            transform: translateX(4px);
        }
        .footer-base-bar {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 45px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 25px;
            font-size: 1.05rem;
            opacity: 0.75;
        }
        .footer-legal-links {
            display: flex;
            gap: 30px;
        }
        .footer-legal-links a:hover {
            color: var(--muted-sage);
            text-decoration: underline;
        }

        /* ================= RESPONSIVE TRANSLATION LAYERS ================= */
        @media (max-width: 1300px) {
            .hero-split, .stream-row, .two-col-guide-layout, .staggered-solutions-grid, .newsletter-editorial-card, .contact-hub-grid, .resources-layout-grid, .subpage-hero-container {
                grid-template-columns: 1fr !important;
                display: flex;
                flex-direction: column;
                gap: 60px;
            }
            .stream-row { direction: ltr !important; }
            .stats-editorial-grid { grid-template-columns: repeat(2, 1fr); }
            .solution-feature-card { margin-top: 0 !important; min-height: auto !important; }
            .tips-matrix-grid { grid-template-columns: repeat(2, 1fr); }
            .checklist-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 850px) {
            header.global-header { padding: 25px 40px; }
            header.global-header.shrunk { padding: 18px 40px; }
            nav.center-nav, .right-actions .btn-contact-header { display: none; }
            .hamburger-menu-icon { display: flex; }
            .hero-left h1 { font-size: 3.4rem; }
            .section-header-center h2, .statistics-canvas h2, .solutions-showcase h2, .parallax-highlight-viewport h3, .subpage-hero-banner h1, .newsletter-editorial-card h2, .legal-canvas h1 { font-size: 2.6rem; }
            .stats-editorial-grid, .tips-matrix-grid, .footer-grid-columns { grid-template-columns: 1fr; }
            .editorial-container { padding: 0 30px; }
            .newsletter-editorial-card { padding: 50px 30px; }
        }