/* === CSS RESET & NORMALIZE === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
    display: block;
}
body {
    line-height: 1.5;
    background: #f9fafb;
    color: #2b2a29;
    font-family: 'Open Sans', Arial, sans-serif;
    min-height: 100vh;
    font-size: 16px;
}
a {
    color: #22649e;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #e3c345;
    text-decoration: underline;
}
ul, ol {
    margin-left: 24px;
    margin-bottom: 18px;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* === VARIABLES for Colors and Shadows === */
:root {
    --brand-primary: #22649e;
    --brand-secondary: #e3c345;
    --brand-accent: #f9fafb;
    --brand-text: #293042;
    --brand-gray: #ede8d5;
    --brand-shadow: 0 4px 16px rgba(34,100,158,0.10);
    --radius: 18px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: #22649e;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 28px;
    line-height: 1.18;
}
h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.22;
}
h3 {
    font-size: 1.375rem;
    margin-bottom: 14px;
}
h4 {
    font-size: 1.1rem;
    color: var(--brand-primary);
}
p, ul, ol {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    color: #2b2a29;
    margin-bottom: 16px;
}
strong {
    color: #22649e;
    font-weight: 700;
}

/* === CONTAINER & LAYOUT === */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}
.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

/* === HEADER & NAVIGATION === */
header {
    background: #fff;
    box-shadow: var(--brand-shadow);
    position: sticky;
    top: 0;
    z-index: 20;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    min-height: 76px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.main-nav {
    display: flex;
    gap: 24px;
    align-items: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
}
.main-nav a {
    padding: 8px 10px;
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s;
    color: #22649e;
}
.main-nav a:hover, .main-nav a:focus {
    background: #e3c345;
    color: #22649e;
}
.cta.primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #e3c345;
    color: #22649e !important;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(34,100,158,0.10);
    padding: 12px 32px;
    margin-left: 8px;
    border: none;
    transition: background 0.22s, color 0.22s, box-shadow 0.22s;
    font-size: 1.1rem;
    cursor: pointer;
}
.cta.primary:hover, .cta.primary:focus {
    background: #22649e;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(34,100,158,0.17);
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3c345;
    color: #22649e;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(34,100,158,0.18);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #22649e;
    color: #fff;
    transform: scale(1.06);
}

.mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(248, 242, 225, 0.99);
    box-shadow: 0 0 0 9999px rgba(42,27,0,0.35);
    z-index: 102;
    transform: translateX(100%);
    transition: transform 0.33s cubic-bezier(.66,.01,.33,1); /* smooth slide */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 32px 0 0 0;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    align-self: flex-end;
    margin: 0 24px 20px 0;
    background: transparent;
    border: none;
    font-size: 2.1rem;
    color: #22649e;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    background: #e3c345;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    align-items: flex-start;
    padding-left: 32px;
}
.mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.2rem;
    color: #22649e;
    padding: 10px 0;
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #e3c345;
    color: #22649e;
}

/* === Hide desktop menu on mobile & mobile menu on desktop === */
@media (max-width: 960px) {
    .main-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .cta.primary { display: none; }
}
@media (min-width: 961px) {
    .mobile-menu,
    .mobile-menu-toggle {
        display: none !important;
    }
    .main-nav {
        display: flex !important;
    }
    .cta.primary {
        display: inline-flex !important;
    }
}


/* === HERO SECTION === */
.hero {
    display: flex;
    background: linear-gradient(90deg, #fffbea 0%, #ffe5b8 100%);
    padding: 60px 0 40px 0;
    margin-bottom: 60px;
}
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.hero h1 {
    color: #22649e;
    text-shadow: 0 4px 20px #ede8d533;
}
.hero p {
    color: #56452e;
    margin-bottom: 18px;
    font-size: 1.18rem;
}
.hero .cta.primary {
    margin-top: 12px;
    background: #22649e;
    color: #fff !important;
}
.hero .cta.primary:hover, .hero .cta.primary:focus {
    background: #e3c345;
    color: #22649e !important;
}

/* === SECTION GENERIC === */
section {
    margin-bottom: 60px;
    padding: 40px 0 0 0;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}

/* === FEATURES FLEX LAYOUT === */
.features .content-wrapper {
    gap: 32px;
}
ul.feature_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
}
ul.feature_grid li {
    flex: 1 1 220px;
    min-width: 220px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--brand-shadow);
    padding: 28px 22px 18px 22px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    transition: box-shadow 0.27s;
    border: 1px solid #ede8d5;
}
ul.feature_grid li:hover {
    box-shadow: 0 6px 24px rgba(227,195,69,0.19);
}
ul.feature_grid img {
    height: 44px;
    width: 44px;
    margin-bottom: 6px;
}
ul.feature_grid h3 {
    font-size: 1.14rem;
    margin-bottom: 4px;
    color: #22649e;
}

/* === SERVICES PREVIEWS ETC === */
ul.service_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 22px;
    list-style: disc inside;
}
.highlights {
    background: #fffbe9;
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: 0 2px 8px rgba(227,195,69,0.11);
    color: #565320;
    margin-top: 8px;
}

/* === TESTIMONIALS FLEX LAYOUT === */
.testimonials .content-wrapper {
    gap: 32px;
}
.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(34,100,158,0.08);
    padding: 26px 28px;
    min-width: 240px;
    max-width: 390px;
    margin-bottom: 20px;
    font-size: 1.06rem;
    color: #293042;
    border: 1px solid #ede8d5;
    transition: box-shadow 0.23s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
    box-shadow: 0 7px 31px rgba(34,100,158,0.22);
}
.testimonial-card p {
    color: #293042;
    margin-bottom: 0;
}
.testimonial-card .testimonial-name {
    font-weight: bold;
    color: #e3c345;
    font-size: 1rem;
    margin-top: 7px;
    letter-spacing: 0.3px;
}


/* === CTA BLOCKS === */
.cta {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: #22649e;
    color: #fff;
    border-radius: var(--radius);
    box-shadow: 0 2px 14px rgba(34,100,158,0.13);
    padding: 40px 30px;
}
.cta h2, .cta p {
    color: #fff !important;
}
.cta .cta.primary {
    background: #e3c345;
    color: #22649e !important;
    margin-top: 10px;
}
.cta .cta.primary:hover, .cta .cta.primary:focus {
    background: #fff;
    color: #22649e !important;
}


/* === CARDS & FLEX LAYOUTS === */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--brand-shadow);
    padding: 28px 22px;
    margin-bottom: 20px;
    position: relative;
    transition: box-shadow 0.23s;
}
.card:hover, .card:focus-within {
    box-shadow: 0 8px 32px rgba(34,100,158,0.15);
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* === TABLES (Pricing) === */
.pricing_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 24px;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(34,100,158,0.07);
}
.pricing_table thead tr {
    background: #e3c345;
    color: #22649e;
}
.pricing_table th, .pricing_table td {
    padding: 18px 12px;
    text-align: left;
    font-size: 1rem;
}
.pricing_table th {
    font-size: 1.08rem;
    font-weight: bold;
    border-bottom: 3px solid #ede8d5;
}
.pricing_table tbody tr:nth-child(even) {
    background: #f9fafb;
}
.pricing_table td {
    border-bottom: 1px solid #ede8d5;
}


/* === FOOTER === */
footer {
    background: #fffbe9;
    border-top: 2px solid #ede8d5;
    box-shadow: 0 -2px 18px rgba(227,195,69,0.05);
}
footer .container {
    padding: 32px 20px 16px 20px;
}
footer .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}
footer .logo {
    margin-bottom: 6px;
}
.brand-tagline {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #22649e;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.98rem;
}
.footer-menu a {
    color: #22649e;
    padding: 4px 8px;
    border-radius: 7px;
}
.footer-menu a:hover, .footer-menu a:focus {
    background: #e3c345;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.96rem;
}
.footer-contact img {
    vertical-align: middle;
    margin-right: 5px;
    height: 18px;
}
.footer-contact a {
    color: #22649e;
    text-decoration: underline;
}
.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 6px;
}
.footer-social a img {
    height: 28px;
    width: 28px;
    opacity: 0.85;
    transition: opacity 0.18s;
}
.footer-social a:hover img, .footer-social a:focus img {
    opacity: 1;
}

/* === CONTACT PAGE: DETAILS & BLOCKS === */
.contact_details ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin: 0 0 10px 0;
    padding: 0;
}
.contact_details ul li img {
    height: 22px;
    width: 22px;
    margin-right: 7px;
    vertical-align: middle;
}
.address_block {
    background: #fffbe9;
    border-radius: var(--radius);
    padding: 12px 18px;
    margin-bottom: 14px;
    font-size: 1.06rem;
}
.embedded_map {
    background: #ede8d5;
    border-radius: var(--radius);
    padding: 10px 15px;
    font-style: italic;
    color: #497ba2;
    margin-bottom: 12px;
}

/* === FAQ === */
.question_list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    list-style: none;
    padding: 0;
}
.question_list li {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--brand-shadow);
    padding: 20px 22px;
    margin-bottom: 20px;
    border: 1px solid #ede8d5;
}
.question_list strong {
    display: block;
    font-size: 1.07rem;
    margin-bottom: 6px;
}

/* === GENERIC FLEX LAYOUTS === */
.installation_cases, .value_grid, .generator_types, .solar_kit_options, .benefits-list, .step_by_step_process, .hours_list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style: none;
    padding-left: 0;
}
.value_grid, .benefits-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}
.value_grid li, .benefits-list li {
    flex: 1 1 240px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(34,100,158,0.14);
    padding: 28px 20px 18px 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
    border: 1px solid #ede8d5;
    transition: box-shadow 0.23s;
}
.value_grid li:hover, .benefits-list li:hover {
    box-shadow: 0 5px 25px rgba(227,195,69,0.16);
}
.value_grid img, .benefits-list img {
    width: 42px;
    height: 42px;
    margin-bottom: 7px;
}

.sustainability_focus, .customer_centricity {
    background: #ede8d5;
    padding: 17px 20px;
    border-radius: var(--radius);
    margin-top: 12px;
    color: #22649e;
}

.package_comparisons, .included_services, .timeline_visual, .search_faq, .location_map, .benefits_achieved, .next_steps {
    background: #f9fafb;
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-top: 14px;
    color: #294072;
}
.package_comparisons h2, .included_services h3, .next_steps ul {
    margin-bottom: 11px;
    color: #22649e;
}

/* --- THANK-YOU PAGE --- */
.thank-you .confirmation_message {
    color: #22649e;
    font-weight: bold;
    font-size: 1.12rem;
    margin-bottom: 18px;
}

/* --- LEGAL PAGES --- */
.legal {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: 0 1px 8px rgba(34,100,158,0.07);
    color: #2b2a29;
}
.legal h1, .legal h2, .legal h3 {
    color: #22649e;
}

/* --- Misc --- */
section:last-child {
    margin-bottom: 0;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #fffbe9;
    box-shadow: 0 -2px 18px rgba(227,195,69,0.19);
    color: #565320;
    padding: 26px 22px 23px 22px;
    font-size: 1rem;
    z-index: 9000;
    gap: 16px;
    border-top: 2px solid #e3c345;
    transition: transform 0.32s, opacity 0.22s;
}
.cookie-banner.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
}
.cookie-banner .cookie-text {
    flex: 2 1 300px;
    margin-right: 16px;
    color: #293042;
}
.cookie-banner .cookie-actions {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex: 1 0 auto;
    align-items: center;
}
.cookie-btn, .cookie-settings-btn {
    font-family: 'Montserrat', Arial, sans-serif;
    border: none;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: var(--radius);
    cursor: pointer;
    background: #e3c345;
    color: #22649e;
    font-weight: 700;
    margin-right: 0;
    transition: background 0.16s, color 0.16s, box-shadow 0.16s;
    box-shadow: 0 1px 6px rgba(227,195,69,0.13);
}
.cookie-btn:hover,
.cookie-btn:focus,
.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
    background: #22649e;
    color: #fff;
    box-shadow: 0 2px 14px rgba(34,100,158,0.11);
}
.cookie-btn.reject {
    background: #ede8d5;
    color: #22649e;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
    background: #22649e;
    color: #fff;
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42,27,0,0.18);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.21s;
}
.cookie-modal {
    background: #fffbe9;
    color: #294072;
    padding: 36px 30px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(34,100,158,0.13);
    max-width: 420px;
    width: calc(100vw - 48px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    animation: fadeInModal 0.35s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInModal {
    from { opacity: 0; transform: translateY(65px) scale(0.93); }
    to { opacity: 1; transform: none; }
}
.cookie-modal .cookie-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 1.6rem;
    color: #22649e;
    cursor: pointer;
    border-radius: 50%;
    padding: 6px 8px;
    transition: background 0.13s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
    background: #e3c345;
}
.cookie-modal h3 {
    font-size: 1.24rem;
}
.cookie-category {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 10px;
}
.cookie-toggle {
    appearance: none;
    width: 38px;
    height: 22px;
    background: #ede8d5;
    border-radius: 20px;
    position: relative;
    outline: none;
    cursor: pointer;
    transition: background 0.15s;
}
.cookie-toggle:checked {
    background: #e3c345;
}
.cookie-toggle:before {
    content: "";
    width: 19px;
    height: 19px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 1.5px;
    left: 2px;
    transition: transform 0.12s, background 0.16s;
    box-shadow: 0 1px 5px rgba(34, 100, 158, 0.13);
}
.cookie-toggle:checked:before {
    transform: translateX(16px);
    background: #fffbe9;
}
.cookie-category label {
    font-weight: 600;
    color: #22649e;
    margin-left: 8px;
}
.cookie-category .cookie-essential {
    color: #61951c;
    font-weight: 700;
    margin-left: 8px;
}
.cookie-modal .cookie-modal-actions {
    display: flex;
    flex-direction: row;
    gap: 13px;
    margin-top: 6px;
}
.cookie-modal .cookie-btn {
    padding: 10px 24px;
    font-size: 1rem;
}

/* === RESPONSIVE DESIGN: Mobile-First === */
@media (max-width: 1100px) {
    .container {
        max-width: 940px;
    }
}
@media (max-width: 960px) {
    .container {
        max-width: 96vw;
    }
    .content-wrapper {
        padding-left: 2px;
        padding-right: 2px;
    }
    section {
        padding: 27px 0 0 0;
    }
}
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.4rem; }
    .hero {
        padding: 36px 0 24px 0;
    }
    .features, .testimonials, .cta, .services, .about-preview, .values, .benefits, .process {
        padding-left: 0;
        padding-right: 0;
    }
    .feature_grid, .testimonial-slider, .value_grid, .benefits-list {
        flex-direction: column;
        gap: 20px;
    }
    .card-container, .content-grid {
        flex-direction: column;
        gap: 16px;
    }
    .cta {
        padding: 22px 9px;
    }
    .legal {
        padding: 22px 8px;
    }
}
@media (max-width: 520px) {
    .container {
        padding-left: 5px;
        padding-right: 5px;
    }
    .section,
    section {
        padding: 18px 0 0 0;
        margin-bottom: 36px;
    }
    .cta {
        padding: 12px 3px;
        border-radius: 12px;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 7px 14px 12px;
        gap: 10px;
        font-size: 0.92rem;
    }
    .cookie-banner .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: 9px;
        align-items: flex-start;
    }
    .footer-menu {
        flex-direction: column;
        gap: 7px;
    }
}

/* === FOCUS VISIBLE === */
a:focus-visible, button:focus-visible, .cta.primary:focus-visible, .mobile-menu-close:focus-visible {
    outline: 2px solid #e3c345;
    outline-offset: 2px;
}

/* === MICRO-INTERACTIONS ON BUTTONS === */
button, .cta.primary, .cookie-btn, .cookie-settings-btn {
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.14s;
}
button:active, .cta.primary:active, .cookie-btn:active, .cookie-settings-btn:active {
    transform: scale(0.97);
}

/* === PREVENTING OVERLAPS === */
section, .section, .card, .testimonial-card, .question_list li, .value_grid li, .benefits-list li {
    margin-bottom: 20px;
}

/* === Z-INDEX LAYERING === */
.mobile-menu { z-index: 102; }
.mobile-menu-toggle { z-index: 100; }
.cookie-banner { z-index: 9000; }
.cookie-modal-overlay { z-index: 9999; }

/* === CUSTOM SCROLLBARS === */
::-webkit-scrollbar {
    width: 10px;
    background: #f9fafb;
}
::-webkit-scrollbar-thumb {
    background: #ede8d5;
    border-radius: 8px;
}

/* --- END SoleRoma Energia CSS --- */
