/* CSS RESET & BASE STYLES */
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;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background: #F5F2EB;
}

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: #2A3A35;
    background: #F5F2EB;
    line-height: 1.6;
    min-height: 100vh;
}

*,*:before,*:after { box-sizing: inherit; }

img {
    max-width: 100%;
    display: block;
    border-radius: 12px;
}

ul, ol {
    padding-left: 1.5em;
    margin-bottom: 1.2em;
}
li {
    margin-bottom: 0.5em;
}

strong { font-weight: 700; }
a {
    color: #ACC64D;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #6e9433;
    text-decoration: underline;
}

/* TYPOGRAPHY: Display and Body */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: #2A3A35;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
}
h1 {
    font-size: 2.4rem;
    margin-bottom: 24px;
}
h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #4a5d52;
}
h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
p {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: #434d45;
}

/* CONTAINER & LAYOUTS */
.container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 3px 16px rgba(42,58,53,0.06);
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    min-width: 260px;
    flex: 1 1 300px;
    transition: box-shadow 0.2s;
}
.card:hover {
    box-shadow: 0 8px 28px rgba(42,58,53,0.21);
}

.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;
}

.testimonial-card {
    background: #fffdf8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 18px rgba(125,151,77,0.08);
    border-left: 6px solid #ACC64D;
    transition: box-shadow 0.18s;
    max-width: 540px;
}
.testimonial-card:hover {
    box-shadow: 0 10px 34px rgba(55,80,35,0.16);
}
.testimonial-card p {
    color: #2A3A35;
    font-size: 1.15rem;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.testimonial-card span {
    color: #61824c;
    font-size: 1em;
    font-style: italic;
}

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

.newsletter {
    background: #e6ebda;
    border-radius: 24px;
    margin-bottom: 60px;
    box-shadow: 0 2px 12px rgba(42,58,53,0.05);
}

/* HERO BANNER */
.hero {
    background: linear-gradient(120deg,#ecede7 80%,#e0e7d1 100%);
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(163,198,77,0.08);
    padding: 64px 20px 48px 20px;
    margin-bottom: 60px;
    min-height: 300px;
    display: flex;
    align-items: center;
}
.hero h1 {
    font-size: 2.8rem;
    color: #2A3A35;
    margin-bottom: 16px;
}
.hero p {
    font-size: 1.24rem;
    color: #46564e;
    margin-bottom: 30px;
}

/* BUTTONS */
.button-primary, .button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.09rem;
    border-radius: 30px;
    border: none;
    padding: 13px 34px;
    cursor: pointer;
    font-weight: bold;
    outline: none;
    text-align: center;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 14px rgba(172,198,77,0.10);
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
    min-width: 120px;
    margin-top: 8px;
    margin-bottom: 8px;
    z-index: 1;
}
.button-primary {
    background: #ACC64D;
    color: #2a3a35;
    border: 2px solid #acc64d;
}
.button-primary:hover, .button-primary:focus {
    background: #7e9e28;
    color: #fff;
    border-color: #7e9e28;
    transform: translateY(-2px) scale(1.025);
    box-shadow: 0 4px 18px rgba(42,58,53,0.13);
}
.button-secondary {
    background: #F5F2EB;
    color: #2A3A35;
    border: 2px solid #ACC64D;
}
.button-secondary:hover, .button-secondary:focus {
    background: #d4dbbc;
    color: #22332d;
    border-color: #7e9e28;
    transform: translateY(-2px) scale(1.025);
}

/* FORMS */
input, textarea, select {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    border-radius: 8px;
    border: 1px solid #cbd5c7;
    padding: 10px 14px;
    font-size: 1rem;
    margin-bottom: 18px;
    color: #2a3a35;
    background: #fafcf8;
    transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border: 1.5px solid #ACC64D;
}

/* MAIN NAVIGATION */
header {
    background: #e6ebda;
    box-shadow: 0 1px 10px rgba(42,58,53,0.06);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 60;
}
.main-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
    padding: 0 20px;
    min-height: 66px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 500;
    background: transparent;
}
.main-navigation img {
    max-height: 44px;
    margin-right: 18px;
}
.main-navigation a {
    color: #38513d;
    padding: 8px 12px;
    font-size: 1.05rem;
    border-radius: 16px;
    transition: background 0.19s, color 0.14s;
    position: relative;
}
.main-navigation a:hover, .main-navigation a:focus {
    background: #c2d08a;
    color: #233329;
}
.main-navigation .button-primary {
    margin-left: 10px;
    font-size: 1.05rem;
}

/* HAMBURGER MOBILE MENU */
.mobile-menu-toggle {
    display: none;
    background: #ACC64D;
    color: #2A3A35;
    border: none;
    font-size: 2.1rem;
    padding: 5px 18px;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(153,164,106,0.10);
    margin-left: auto;
    margin-right: 12px;
    z-index: 102;
    transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #7e9e28;
    color: #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100svh;
    width: 100vw;
    background: #f5f6f2;
    box-shadow: 0 6px 28px rgba(42,58,53,0.13);
    z-index: 110;
    overflow-y: auto;
    padding: 20px 0 32px 0;
    transform: translateX(-100vw);
    transition: transform 0.3s cubic-bezier(.63,.35,.32,1.2);
    display: flex;
    flex-direction: column;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    background: none;
    color: #2A3A35;
    font-size: 2.4rem;
    border: none;
    position: absolute;
    top: 16px;
    right: 24px;
    cursor: pointer;
    padding: 0 6px;
    z-index: 111;
    transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    color: #7e9e28;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 60px 32px 24px 32px;
}
.mobile-nav a {
    font-size: 1.26rem;
    color: #2A3A35;
    background: none;
    padding: 12px 6px;
    border-radius: 14px;
    width: 100%;
    transition: background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #c2d08a;
    color: #233329;
}

/* MAIN + SECTION LAYOUTS */
main > section, .section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero {
        padding: 40px 8px 32px 8px;
        min-height: 210px;
    }
    .card-container, .content-grid {
        flex-direction: column;
        gap: 18px;
    }
    .text-image-section {
        flex-direction: column;
        gap: 18px;
    }
    .testimonial-card {
        max-width: 100%;
    }
    .container {
        padding-left: 7px;
        padding-right: 7px;
    }
}

/* FEATURES LISTS WITH ICONS */
.features ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    margin-bottom: 18px;
    margin-top: 12px;
    align-items: center;
}
.features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.11rem;
    color: #4a5d52;
}
.features img {
    width: 30px;
    height: 30px;
    background: #e6ebe3;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 2px 9px rgba(172,198,77,0.08);
    margin-right: 6px;
}

/* SERVICES SECTION STYLES */
.services {
    background: #fafcf8;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(172,198,77,0.05);
}
.services ul {
    list-style: none;
    gap: 16px;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
.services li strong {
    color: #7e9e28;
    font-weight: bold;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.services li span {
    color: #4a5d52;
    font-style: italic;
    margin-left: 12px;
}

/* CATEGORY & ABOUT SECTION */
.categories, .about, .legal, .contact, .thankyou {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: 0 2px 14px rgba(42,58,53,0.06);
    padding: 36px 18px;
}
.categories h3 {
    color: #627642;
}

.about ul, .thankyou ul, .legal ul,
.categories ul, .contact ul {
    list-style: disc;
    margin-bottom: 8px;
    margin-top: 8px;
    padding-left: 22px;
    color: #54784b;
}

.thankyou ul li a {
    color: #ACC64D;
    text-decoration: underline;
}

.text-section {
    margin-bottom: 18px;
}

/* FOOTER STYLES */
footer {
    background: #e6ebda;
    box-shadow: 0 -1px 10px rgba(42,58,53,0.04);
    padding: 34px 0 10px 0;
    border-radius: 26px 26px 0 0;
    margin-top: 54px;
}
footer .container {
    padding: 0 20px;
}
footer .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px;
    justify-content: space-between;
}
footer nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
footer a {
    color: #38513d;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    margin-bottom: 2px;
}
footer a:hover, footer a:focus {
    color: #7e9e28;
    text-decoration: underline;
}
.footer-contact {
    color: #4a5d52;
    font-size: 1.01em;
    margin-bottom: 6px;
    font-style: italic;
}
.footer-motto {
    margin-top: 8px;
    color: #61824c;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    letter-spacing: 0.04em;
}
@media (max-width: 768px) {
    footer .content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    footer {
        border-radius: 20px 20px 0 0;
    }
}

/* ORGANIC DECORATIVE ELEMENTS */
.section, .newsletter, .features, .services, .about, .contact, .categories, .legal, .thankyou {
    /* Organic shape illusion via border-radius + box-shadow */
    border-radius: 22px 38px 24px 18px/28px 18px 34px 26px;
    box-shadow: 0 6px 30px rgba(172,198,77,0.07), 0 1.5px 9px rgba(80,93,61,0.01);
}

/* MICRO-INTERACTIONS & TRANSITIONS */
.button-primary, .button-secondary, .main-navigation a, .mobile-nav a, .testimonial-card, .card {
    transition: background 0.18s, color 0.16s, box-shadow 0.2s, transform 0.14s;
}
.card:active, .button-primary:active, .button-secondary:active {
    transform: scale(0.98);
    box-shadow: 0 1px 3px rgba(42,58,53,0.08);
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: #2A3A35;
    color: #fff;
    z-index: 2000;
    box-shadow: 0 -2px 12px rgba(42,58,53,0.18);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    justify-content: center;
    padding: 26px 18px;
    font-size: 1.1rem;
    font-family: 'Open Sans', Arial, sans-serif;
    transition: transform 0.35s;
}
.cookie-consent.hide {
    transform: translateY(120%);
}
.cookie-consent-content {
    max-width: 760px;
    flex: 1 1 300px;
}
.cookie-consent-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 24px;
}
.cookie-consent .button-primary, .cookie-consent .button-secondary {
    font-size: 1rem;
    min-width: 120px;
    padding: 8px 25px;
    margin: 0;
}
.cookie-consent .button-secondary {
    background: #fff;
    border-color: #ACC64D;
    color: #2A3A35;
}
.cookie-consent .button-secondary:hover, .cookie-consent .button-secondary:focus {
    background: #d4dbbc;
    color: #22332d;
}
@media (max-width: 760px) {
    .cookie-consent {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 22px 7px 22px 7px;
    }
    .cookie-consent-actions {
        margin-left: 0;
        gap: 12px;
    }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42,58,53,0.22);
    z-index: 2200;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
    visibility: visible;
    opacity: 1;
}
.cookie-modal {
    background: #fff;
    color: #2A3A35;
    border-radius: 22px 38px 24px 18px/28px 18px 34px 26px;
    box-shadow: 0 6px 30px rgba(172,198,77,0.13);
    min-width: 300px;
    max-width: 97vw;
    width: 415px;
    padding: 34px 26px 30px 26px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: fadeInUp 0.34s;
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(60px); }
    100% { opacity: 1; transform: translateY(0); }
}
.cookie-modal-close {
    position: absolute;
    top: 16px;
    right: 14px;
    background: none;
    border: none;
    color: #7e9e28;
    font-size: 2.2rem;
    cursor: pointer;
    transition: color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    color: #acc64d;
}
.cookie-modal h3 {
    color: #2A3A35;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-category-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.04rem;
    color: #38513d;
}
.cookie-category input[type=checkbox] {
    width: 22px;
    height: 22px;
    border: 2px solid #ACC64D;
    border-radius: 6px;
    accent-color: #ACC64D;
}
.cookie-category .always-on {
    font-style: italic;
    color: #8b927b;
    margin-left: 6px;
}
.cookie-modal .button-primary, .cookie-modal .button-secondary {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 6px;
    font-size: 1.09rem;
}

@media (max-width: 520px) {
    .cookie-modal { width: 99vw; min-width: unset; padding: 20px 7px; }
}

/* ADDITIONAL UTILITY CLASSES */
.d-none { display: none!important; }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.px-2 { padding-left: 16px; padding-right: 16px; }
.rounded {
    border-radius: 18px;
}

/* ACCESSIBILITY: FOCUS STATES */
a:focus-visible, button:focus-visible, input:focus-visible, .button-primary:focus-visible, .button-secondary:focus-visible {
    outline: 2.5px solid #ACC64D;
    outline-offset: 2px;
}

/* ORGANIC STYLE ACCENTS */
.section, .hero, .newsletter, .card, .testimonial-card, .about, .services, .features, .categories, .legal, .thankyou, .contact {
    background-clip: padding-box;
    box-shadow: 0 0.5px 5px rgba(172,198,77,0.02),0 6.5px 32px rgba(77,125,48,0.07);
}

/* NATURAL TEXTURE (subtle, visually organic) */
body {
    background-image: url('assets/textures/organic-fiber.png');
    background-size: 520px 520px;
    background-repeat: repeat;
    background-blend-mode: lighten;
}

/* SCROLLBAR FOR NATURE LOOK */
::-webkit-scrollbar {
    width: 12px;
    background: #e6ebda;
}
::-webkit-scrollbar-thumb {
    background: #ACC64D;
    border-radius: 16px;
}

/* END OF STYLE.CS */
