/*==== RESET & BASE ====*/
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, 
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: #FCFAF7;
    color: #2F3E2E;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
a {
    color: #005A84;
    text-decoration: none;
    transition: color .2s;
}
a:hover, a:focus {
    color: #1B8037;
}
ul, ol {
    margin-left: 24px;
}
ul, ol, li { list-style-position: outside; }
img {
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    border: 0;
}
strong, b { font-weight: 700; }


/*==== FONTS & TYPOGRAPHY ====*/
h1, .h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #18423C;
    letter-spacing: -.5px;
}
h2, .h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #1B8037;
    letter-spacing: -.25px;
}
h3, .h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 14px;
    color: #005A84;
}
h4, .h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #3A3129;
}
p, li, ol, ul {
    color: #2F3E2E;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.7;
}
.subheadline {
    font-size: 1.25rem;
    color: #367055;
    margin-bottom: 18px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
}


/*==== CONTAINERS & UTILITY ====*/
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}
.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.section, section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: transparent;
    border-radius: 28px;
}


/*==== HEADER, LOGO & NAVIGATION ====*/
header {
    background: #E6EEE2;
    box-shadow: 0 2px 8px rgba(67,87,57,0.05);
    border-bottom: 1px solid #B7CDBA;
    position: sticky;
    top: 0;
    z-index: 48;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 32px;
    position: relative;
}
.logo {
    display: flex;
    align-items: center;
    height: 54px;
    padding: 0 3px;
}
.logo img {
    height: 48px;
    width: auto;
}
.main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-left: 10px;
}
.main-nav a {
    position: relative;
    padding: 8px 6px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 17px;
    color: #195239;
    font-weight: 500;
    letter-spacing: 0.1px;
    border-radius: 6px;
    transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a:focus {
    background: #CBE9C2;
    color: #18423C;
}

.btn, .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    background: #1B8037;
    color: #FFF;
    border: none;
    border-radius: 30px;
    padding: 12px 34px;
    margin-left: 26px;
    box-shadow: 0 2px 12px rgba(47,62,46,0.07);
    cursor: pointer;
    letter-spacing: 0.1px;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    text-align: center;
    outline: none;
}
.btn:hover, .btn:focus, .btn-primary:hover, .btn-primary:focus {
    background: #195239;
    color: #FFFBE5;
    box-shadow: 0 4px 16px rgba(41,87,50,0.10);
}

/*==== MOBILE NAVIGATION ====*/
.mobile-menu-toggle {
    background: none;
    border: none;
    color: #1B8037;
    font-size: 2.4rem;
    padding: 4px 12px;
    margin-left: 24px;
    cursor: pointer;
    display: none;
    z-index: 52;
    transition: color 0.2s, background 0.2s;
}
.mobile-menu-toggle:focus {
    color: #F2A900;
}
.mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: #E6EEE2;
    box-shadow: 0 2px 40px rgba(44,74,61,0.24);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 0 0 0;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(.59,-0.33,.57,1.39);
    gap: 0;
}
.mobile-menu.open {
    transform: translateX(0);
    box-shadow: 0 2px 44px rgba(44,74,61,0.18);
}
.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2.3rem;
    color: #1B8037;
    position: absolute;
    top: 25px; right: 24px;
    z-index: 102;
    cursor: pointer;
    outline: none;
    transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    color: #F2A900;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100vw;
    margin-top: 76px;
    margin-left: 0;
    padding-left: 0;
}
.mobile-nav a {
    display: block;
    padding: 22px 38px 22px 28px;
    width: 100vw;
    font-size: 1.25rem;
    color: #18423C;
    font-family: 'Montserrat', Arial, sans-serif;
    border-bottom: 1px solid #B7CDBA;
    background: none;
    transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #CBE9C2;
    color: #005A84;
}
@media (max-width: 1020px) {
    .main-nav {
        gap: 11px;
    }
    .btn, .btn-primary {
        margin-left: 8px;
    }
}
@media (max-width: 900px) {
    header .container {
        gap: 10px;
    }
    .main-nav {
        gap: 6px;
    }
    .btn, .btn-primary {
        margin-left: 1px;
        padding: 11px 18px;
    }
}
@media (max-width: 820px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: inline-flex;
    }
    .btn, .btn-primary {
        margin-left: 0px;
        padding: 11px 13px;
    }
}
@media (max-width: 580px) {
    header .container {
        min-height: 62px;
        padding: 7px 9px;
    }
    .logo img {
        height: 38px;
    }
    .mobile-nav a {
        font-size: 1.07rem;
        padding: 17px 24px 17px 18px;
    }
    .mobile-menu-close {
        top: 14px; right: 13px;
        font-size: 1.7rem;
    }
}


/*==== HERO SECTION ====*/
.hero-section {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E6EEE2 url('../assets/organicleaf-bg.svg') bottom right no-repeat;
    background-size: 220px auto;
    box-shadow: 0 5px 32px rgba(43,85,46,0.05);
    border-radius: 0 0 48px 48px;
    margin-bottom: 0;
}
.hero-section .container {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-section .content-wrapper {
    align-items: flex-start;
    max-width: 700px;
    gap: 23px;
}
@media (max-width: 700px) {
    .hero-section {
        background-size: 130px auto;
        border-radius: 0 0 24px 24px;
        padding: 8px 0;
    }
    .hero-section .container {
        padding: 28px 8px 28px 8px;
    }
    h1, .h1 {
        font-size: 2.1rem;
    }
}

/*==== FEATURES, CARDS, ORGANIC SHAPES ====*/
.features-grid, .trend-list, .solution-cards, .guide-list, .footer-columns, .tip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.features-grid {
    justify-content: space-between;
}
.feature, .trend, .solution, .guide, .tip {
    background: #F9F5EE;
    border-radius: 22px 48px 30px 38px/44px 30px 28px 54px;
    box-shadow: 0 2px 16px rgba(66, 87, 57, 0.07);
    padding: 32px 28px;
    min-width: 240px;
    max-width: 350px;
    flex: 1 1 210px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    transition: box-shadow 0.2s, transform .18s;
    margin-bottom: 20px;
    border: 1px solid #E1ECDC;
}
.feature:hover, .trend:hover, .solution:hover, .guide:hover, .tip:hover {
    box-shadow: 0 6px 24px rgba(66,87,57,0.13);
    transform: translateY(-4px) scale(1.013);
}
.feature img, .contact-info img, .address-info img, .phone-email-info img, .open-hours img {
    height: 42px;
    width: auto;
    margin-bottom: 6px;
    display: inline-block;
}
.card {
    background: #FCFBF6;
    border-radius: 40px;
    box-shadow: 0 2px 8px rgba(41, 87, 50, 0.06);
    margin-bottom: 20px;
    padding: 24px 20px;
    border: 1px solid #EBDCBB;
    position: relative;
    min-width: 240px;
}

.card-container, .content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}
.content-grid {
    gap: 20px;
}

/*==== TESTIMONIALS & FAQ ====*/
.testimonials-section {
    background: #E6EEE2;
    border-radius: 32px 32px 6px 60px;
}
.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 16px;
}
.testimonial-card {
    background: #FFF;
    color: #1A2E18;
    border-radius: 31px 16px 39px 36px/28px 36px 15px 41px;
    box-shadow: 0 4px 20px rgba(53,78,38,0.12);
    padding: 20px 34px 18px 34px;
    min-width: 250px;
    max-width: 354px;
    font-size: 1.07rem;
    line-height: 1.62;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    border: 1px solid #CBE9C2;
    transition: box-shadow 0.2s, border 0.16s;
}
.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(41,87,50,0.18);
    border-color: #A4DE79;
}
.testimonial-card .author {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #1B8037;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 6px;
    letter-spacing: 0.1px;
}

.faq-section {
    background: #F9F5EE;
    border-radius: 32px 27px 28px 51px;
    padding: 40px 20px;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    background: #FFF;
    border-radius: 15px 22px 31px 14px;
    box-shadow: 0 1px 6px rgba(41,87,50,0.05);
    padding: 22px 20px;
    border: 1px solid #E2E8ED;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: box-shadow 0.2s, border 0.13s;
}
.faq-item:hover {
    border-color: #8BCF77;
    box-shadow: 0 3px 14px rgba(67,87,57,0.09);
}

/*==== CTA Section ====*/
.cta-section, .cta-help {
    background: #E1F2E7;
    border-radius: 43px 21px 49px 39px;
    box-shadow: 0 5px 16px rgba(41,87,50,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px 20px;
}
.cta-section .content-wrapper, .cta-help .content-wrapper {
    align-items: center;
}
.cta-section h2, .cta-help h2 {
    text-align: center;
    margin-bottom: 18px;
}
.cta-section a, .cta-help a {
    margin-left: 0;
    margin-top: 12px;
}

/*==== CONTACT SECTION ====*/
.contact-section {
    background: #F9F5EE;
    border-radius: 40px 40px 18px 55px;
}
.contact-info-block {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 20px;
}
.address-info, .phone-email-info, .open-hours, .contact-cta {
    background: #E6EEE2;
    border-radius: 18px 32px 20px 34px;
    box-shadow: 0 1px 10px rgba(44,74,61,0.07);
    padding: 22px 20px;
    flex: 1 1 220px;
    font-size: 1.07rem;
    min-width: 180px;
}
.contact-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-cta a {
    margin: 0;
}

/*==== MAP-SECTION ====*/
.map-section {
    background: #E6EEE2;
    border-radius: 27px 32px 45px 19px;
    margin-bottom: 60px;
    padding: 40px 20px;
    box-shadow: 0 6px 26px rgba(41,87,50,0.06);
}
.map-embed {
    background: #F9F5EE;
    border-radius: 17px 29px 36px 21px;
    padding: 21px 18px;
    box-shadow: 0 1px 5px rgba(41,87,50,0.03);
    font-size: 1rem;
}

/*==== FOOTER ====*/
footer {
    background: #1B8037;
    color: #F9F5EE;
    padding-top: 44px;
    padding-bottom: 0;
    border-radius: 70px 0 0 0;
    font-size: 1rem;
}
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 34px;
}
.footer-col {
    flex: 1 1 215px;
    min-width: 170px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}
.footer-col img {
    max-height: 38px;
    margin-bottom: 10px;
}
.footer-col h4 {
    color: #FFFDE9;
    font-weight: 600;
    margin-bottom: 7px;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}
.footer-nav a {
    color: #E2E8ED;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    margin-bottom: 2px;
    padding: 2px 0;
    border-radius: 3px;
    transition: color 0.18s, background 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
    background: #FCFAF7;
    color: #195239;
}
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: .97rem;
    color: #F9F5EE;
}
.contact-info img {
    height: 21px;
    width: 21px;
    margin-right: 6px;
    display: inline-block;
}
.newsletter-signup p {
    color: #FFFBE5;
    font-size: .97rem;
    line-height: 1.65;
    margin: 0 0 6px 0;
}
.footer-bottom {
    border-top: 1px solid #CBE9C2;
    padding: 15px 0 17px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-legal {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-legal a {
    color: #F2A900;
    font-size: 0.98rem;
    text-decoration: underline dotted;
    transition: color 0.14s;
}
.footer-legal a:hover {
    color: #FFF;
}
@media (max-width: 960px) {
    .footer-columns {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
}
@media (max-width: 660px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 13px 0 14px 0;
    }
    .footer-legal {
        gap: 8px;
        margin-bottom: 8px;
    }
}

/*==== LEGAL & CONTENT SECTIONS ====*/
.legal-section {
    background: #F9F5EE;
    border-radius: 30px 42px 36px 24px;
    box-shadow: 0 1px 6px rgba(41,87,50,0.04);
    margin-bottom: 60px;
    padding: 45px 14px 20px 14px;
}
.privacy-policy-content, .cookies-policy-content, .terms-of-use-content, .rodo-content {
    margin-top: 12px;
    font-size: 1rem;
}
.privacy-policy-content h2,
.cookies-policy-content h2, 
.terms-of-use-content h2, 
.rodo-content h2 {
    font-size: 1.22rem;
    margin: 23px 0 8px 0;
    color: #005A84;
    font-family: 'Montserrat', Arial, sans-serif;
}

/*==== STEPS, VALUES, ACHIEVEMENTS ====*/
.steps-list, .values-list {
    background: #FCFBF6;
    border-radius: 20px 32px 28px 18px;
    box-shadow: 0 1px 5px rgba(47,62,46,0.04);
    padding: 24px 20px 20px 30px;
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 20px;
}
.steps-list li, .values-list li {
    margin-bottom: 13px;
    padding-left: 2px;
}
.achievement-stats ul, .milestones ul {
    margin-left: 10px;
    margin-bottom: 12px;
}
.achievement-stats ul li, .milestones ul li {
    color: #005A84;
    font-weight: 600;
    margin-bottom: 4px;
}
.milestones h3 {
    margin-top: 11px;
}

/*==== PROGRESS BAR ====*/
.progress-bar {
    background: #E1F2E7;
    height: 13px;
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 12px;
    width: 92%;
    box-shadow: 0 1px 4px rgba(67,87,57,0.07);
}
.progress {
    display: inline-block;
    height: 100%;
    background: #1B8037;
    border-radius: 7px;
    transition: width 0.7s cubic-bezier(.29,.47,.45,1);
}

/*==== TIP FILTER MENU ====*/
.tip-filter-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 17px;
}
.tip-filter-menu a {
    display: inline-block;
    background: #E6EEE2;
    color: #005A84;
    border-radius: 22px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    padding: 7px 20px;
    font-size: 1rem;
    transition: background 0.16s, color 0.19s;
    border: 1px solid #B7CDBA;
}
.tip-filter-menu a:hover, .tip-filter-menu a:focus {
    background: #1B8037;
    color: #FFF;
    border-color: #1B8037;
}

/*==== THANK YOU ====*/
.thank-you-section {
    background: #F9F5EE url('../assets/organic-scribble.svg') top right no-repeat;
    background-size: 140px auto;
    border-radius: 32px 60px 32px 68px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
    box-shadow: 0 4px 20px rgba(53,78,38,0.13);
    padding: 40px 22px;
}

/*==== RESPONSIVE FLEXBOX RULES ====*/
.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;
}
.card-container, .content-grid {
    gap: 20px;
}
@media (max-width: 900px) {
    .footer-columns {
        gap: 20px;
    }
    .contact-info-block {
        flex-direction: column;
        gap: 18px;
    }
}
@media (max-width: 768px) {
    .container, .hero-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .features-grid, .trend-list, .solution-cards, .guide-list, .footer-columns, .tip-list {
        flex-direction: column;
        gap: 18px;
    }
    .testimonial-slider {
        flex-direction: column;
    }
    .faq-accordion {
        gap: 13px;
    }
    .section, section {
        margin-bottom: 35px;
        padding: 20px 7px;
        border-radius: 14px;
    }
    .cta-section, .cta-help {
        border-radius: 20px 18px 18px 18px;
        padding: 21px 7px;
    }
    .card, .feature, .trend, .solution, .guide, .tip {
        min-width: unset;
        max-width: unset;
        width: 100%;
        padding: 20px 13px;
        font-size: .98rem;
    }
    .footer-columns {
        gap: 14px;
    }
    .thank-you-section {
        padding: 23px 5px;
        background-size: 77px auto;
        border-radius: 18px 32px 18px 42px;
    }
    .text-image-section {
        flex-direction: column;
        align-items: center;
        gap: 17px;
    }
}
@media (max-width: 430px) {
    h1, .h1 {
        font-size: 1.42rem;
    }
    h2, .h2 {
        font-size: 1.07rem;
    }
    .btn, .btn-primary {
        padding: 8px 10px;
        font-size: .95rem;
    }
}

/*==== MICRO-INTERACTIONS & ANIMATIONS ====*/
.btn, .btn-primary, .tip-filter-menu a, .footer-nav a, .main-nav a, .mobile-nav a {
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.card, .feature, .trend, .solution, .guide, .tip, .testimonial-card, .faq-item {
    transition: box-shadow 0.16s, transform 0.16s;
}

/*==== COOKIE CONSENT BANNER & MODAL ====*/
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: #EFE8DB;
    color: #1B8037;
    box-shadow: 0 -2px 24px rgba(79, 89, 67, 0.13);
    width: 100vw;
    padding: 18px 14px;
    z-index: 1100;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    font-size: 1rem;
    transition: transform 0.34s cubic-bezier(.59,-0.33,.57,1.39);
    transform: translateY(0);
}
.cookie-banner.hide {
    transform: translateY(140%);
}
.cookie-banner .cookie-text {
    flex: 1 1 250px;
    margin-right: 18px;
    color: #367055;
    font-size: 1rem;
    max-width: 520px;
}
.cookie-banner .cookie-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}
.cookie-btn, .cookie-settings-btn {
    background: #1B8037;
    color: #FFF;
    font-family: 'Montserrat', Arial, sans-serif;
    border: none;
    border-radius: 18px;
    padding: 8px 22px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.18s, color 0.16s, box-shadow 0.18s;
    outline: none;
}
.cookie-btn:hover, .cookie-btn:focus,
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
    background: #F2A900;
    color: #1B8037;
    box-shadow: 0 2px 12px rgba(47,62,46,0.09);
}
.cookie-btn.reject {
    background: #C25F0D;
    color: #FFF;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
    background: #A24C00;
    color: #FFF7E3;
}
.cookie-settings-btn {
    background: #005A84;
    color: #FFFDEB;
    border: 1px solid #B7CDBA;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
    background: #E2E8ED;
    color: #005A84;
}
@media (max-width: 620px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .cookie-banner .cookie-text {
        margin-right: 0;
        max-width: 99vw;
        font-size: .98rem;
    }
    .cookie-banner .cookie-actions {
        flex-direction: column;
        gap: 7px;
    }
}

.cookie-modal-overlay {
    position: fixed;
    left: 0; right: 0; top: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(43,85,46,0.16);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.24s cubic-bezier(.59,-0.33,.57,1.39), visibility 0.06s 0.18s;
}
.cookie-modal-overlay.open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}
.cookie-modal {
    background: #FFF;
    padding: 35px 28px 30px 28px;
    border-radius: 28px 18px 31px 22px;
    box-shadow: 0 8px 32px rgba(41,87,50,0.17);
    min-width: 286px; max-width: 97vw;
    max-width: 470px;
    color: #18423C;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    animation: modalSlideIn 0.37s cubic-bezier(.59,-0.33,.57,1.39);
}
@keyframes modalSlideIn {
    from { transform: translateY(160px); opacity: 0.1; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.27rem;
    color: #005A84;
}
.cookie-category {
    background: #EFEDD8;
    padding: 12px 14px;
    border-radius: 12px 19px 16px 13px;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category label {
    flex: 1;
    color: #18423C;
}
.cookie-category input[type="checkbox"] {
    accent-color: #1B8037;
    width: 21px;
    height: 21px;
}
.cookie-category input[type="checkbox"][disabled] {
    accent-color: #B7CDBA;
    filter: grayscale(1) opacity(0.75);
}
.cookie-modal-actions {
    display: flex;
    gap: 13px;
    margin-top: 13px;
    justify-content: flex-end;
}
.cookie-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #B7CDBA;
    cursor: pointer;
    outline: none;
    transition: color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    color: #1B8037;
}

@media (max-width: 400px) {
    .cookie-modal {
        padding: 16px 5px 18px 9px;
    }
}

/*==== ORGANIC/NATURE DETAILS ====*/
.feature, .trend, .solution, .guide, .tip, .testimonial-card, .faq-item, .card {
    box-shadow: 0 2px 13px rgba(183, 205, 186, 0.13);
}
.section, .cta-section, .thank-you-section, .map-section, .footer-columns, .legal-section {
    background-image: none;
}

/*==== SCROLLBAR ====*/
::-webkit-scrollbar { width: 9px; background: #E2E8ED; }
::-webkit-scrollbar-thumb { background: #CBE9C2; border-radius: 8px; }

/*==== MISC ====*/
body:focus-visible { outline: none; }
*:focus-visible { outline: 2px solid #F2A900; outline-offset: 2px; }

/*==== END STYLE ====*/
