/* --------------------------------------------------
   1. CSS RESET & BASELINE (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, 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, menu, nav, section {
    display: block;
}
body {
    line-height: 1.5;
    min-width: 100vw;
    min-height: 100vh;
    background: #F7F7F2;
    color: #2E5134;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    color: inherit;
    text-decoration: none;
}
ul, ol {
    list-style: none;
    padding-left: 0;
}
button, input, textarea, select {
    font: inherit;
    background: none;
    border: none;
    outline: none;
    color: inherit;
}
button {
    cursor: pointer;
}

/* -----------------------------------------------
   2. TYPOGRAPHY & BRAND FONTS
----------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@700&display=swap');

body {
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: #2E5134;
    line-height: 1.1;
    font-weight: 700;
}
h1 { font-size: 2rem; margin-bottom: 20px; letter-spacing: -1px; }
h2 { font-size: 1.5rem; margin-bottom: 18px; }
h3 { font-size: 1.18rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1rem; }
p, ul, ol li, address {
    font-size: 1rem;
    color: #2E5134;
    margin-bottom: 12px;
    line-height: 1.6;
}

strong { font-weight: 700; }
em, i { font-style: italic; }

/* ------------------------
   3. LAYOUT CONTAINERS
------------------------ */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
}

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

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Cards and lists */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(46, 81, 52, 0.06);
    margin-bottom: 20px;
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.22s cubic-bezier(.45,.05,.55,.95);
}
.card:hover {
    box-shadow: 0 4px 24px rgba(46, 81, 52, 0.09);
}

.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 {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(46,81,52,0.08);
    padding: 20px;
    margin-bottom: 20px;
    color: #293a2b;
    transition: box-shadow 0.22s cubic-bezier(.45,.05,.55,.95);
}
.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(46,81,52,0.12);
}

.testimonial-highlight {
    background: #A3C9A8;
    border-radius: 10px;
    color: #2E5134;
    padding: 18px 24px;
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.12rem;
    box-shadow: 0 0.5px 4px rgba(46,81,52,0.08);
}

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

.text-section {
    gap: 16px;
    margin-top: 8px;
}

/*------------
 4. NAVBER
-------------*/
header {
    background: #fff;
    box-shadow: 0 1px 12px rgba(46,81,52,.04);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}
header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
header nav {
    display: flex;
    flex-direction: row;
    gap: 24px;
}
header nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: #2E5134;
    font-size: 1rem;
    padding: 10px 6px;
    border-radius: 8px;
    transition: background 0.16s, color 0.18s;
}
header nav a:hover, header nav a:focus {
    background: #A3C9A8;
    color: #fff;
}

header .btn-primary {
    margin-left: 18px;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
    display: none;
    background: none;
    font-size: 2rem;
    color: #2E5134;
    border: none;
    margin-left: 10px;
    z-index: 120;
    transition: color 0.16s;
}
.mobile-menu-toggle:hover {
    color: #356f45;
}

/* ----------------------
    5. BUTTONS + LINKS
----------------------- */
.btn-primary {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    background: #2E5134;
    color: #fff;
    border-radius: 30px;
    padding: 12px 32px;
    box-shadow: 0 2px 6px rgba(46,81,52,0.08);
    border: none;
    display: inline-block;
    transition: background .18s, box-shadow .19s, color .18s;
}
.btn-primary:hover, .btn-primary:focus {
    background: #A3C9A8;
    color: #fff;
    box-shadow: 0 4px 24px rgba(163,201,168,0.11);
}

.btn-secondary {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    background: #A3C9A8;
    color: #2E5134;
    border-radius: 30px;
    padding: 12px 32px;
    border: none;
    display: inline-block;
    transition: background .18s, color .18s;
}
.btn-secondary:hover, .btn-secondary:focus {
    background: #2E5134;
    color: #fff;
}

.btn-outline {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    background: none;
    color: #2E5134;
    border: 2px solid #2E5134;
    border-radius: 30px;
    padding: 10px 28px;
    transition: background .18s, color .18s;
}
.btn-outline:hover, .btn-outline:focus {
    background: #A3C9A8;
    color: #fff;
}

/* ----------------------
      6. FOOTER
------------------------ */
footer {
    background: #fff;
    margin-top: 48px;
    box-shadow: 0 -1px 12px rgba(46,81,52,0.04);
    font-size: 0.97rem;
}
footer .container {
    flex-direction: column;
    gap: 18px;
}
footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 8px;
}
footer nav a {
    color: #2E5134;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.16s;
}
footer nav a:hover, footer nav a:focus {
    background: #A3C9A8;
    color: #fff;
}
footer address {
    color: #355846;
    font-style: normal;
    line-height: 1.5;
}
footer a {
    color: #2E5134;
    text-decoration: underline dotted;
    transition: color .14s;
}
footer a:hover, footer a:focus {
    color: #A3C9A8;
}

/* -----------------------------------
     7. LISTS, ICONS, ARTICLE BLOCKS
----------------------------------- */
.content-wrapper ul, .content-wrapper ol {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}
.content-wrapper ul li, .content-wrapper ol li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.6;
}
.content-wrapper ul li img, .content-wrapper ol li img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

ol {
    counter-reset: ordered;
}
.content-wrapper ol li {
    counter-increment: ordered;
    position: relative;
    padding-left: 0;
}
.content-wrapper ol li:before {
    content: counter(ordered) '.';
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: #A3C9A8;
    font-weight: 600;
    margin-right: 15px;
    font-size: 1.15em;
}

/* -------------------------------
     8. SPACING & FLEX LAYOUTS
--------------------------------- */
main {
    flex: 1 1 auto;
}
section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
.card-container, .content-grid {
    margin-top: 12px;
}
.content-wrapper > *,
.card-container > *,
.content-grid > *,
.card > *,
.feature-item > * {
    margin-bottom: 0;
}

/* -------------
    RESPONSIVE
--------------- */
@media (max-width: 991px) {
    .container {
        max-width: 98vw;
        padding-left: 14px;
        padding-right: 14px;
    }
    header .container {
        gap: 9px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    header .container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    header nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: inline-block;
    }
    .btn-primary {
        padding: 9px 18px;
        font-size: 0.98rem;
    }
    section {
        padding: 30px 6px;
        margin-bottom: 38px;
    }
    .testimonial-card, .card {
        padding: 14px;
    }
    .testimonial-highlight {
        padding: 9px 10px;
        font-size: 0.99rem;
    }
    .text-image-section, .content-grid {
        flex-direction: column;
        gap: 18px;
    }
    .card-container {
        flex-direction: column;
        gap: 16px;
    }
    footer nav {
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 500px) {
    h1 { font-size: 1.32rem; }
    h2 { font-size: 1.1rem; }
    .btn-primary, .btn-secondary {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

/* ------------------------------------------------------
    9. MOBILE MENU OVERLAY (Hamburger Navigation)
------------------------------------------------------- */
.mobile-menu {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    box-shadow: 0 7px 36px rgba(46,81,52,0.13);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transform: translateX(-100vw);
    opacity: 0;
    transition: transform 0.38s cubic-bezier(.45,.05,.55,.95), opacity 0.2s;
    pointer-events: none;
}
.mobile-menu.open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2.4rem;
    color: #2E5134;
    margin: 22px 22px 12px 12px;
    transition: color .15s;
    align-self: flex-end;
    z-index: 2200;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    color: #A3C9A8;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100vw;
    padding: 34px 32px;
    margin-top: 6px;
}
.mobile-nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.14rem;
    color: #2E5134;
    padding: 14px 12px 14px 6px;
    border-radius: 10px;
    transition: background .14s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #A3C9A8;
    color: #fff;
}

@media (min-width: 769px) {
    .mobile-menu, .mobile-menu-close, .mobile-menu-toggle {
        display: none !important;
    }
    header nav {
        display: flex !important;
    }
}

/* Ensure menu overlays all */
.mobile-menu.open {
    box-shadow: 0 3px 36px rgba(46,81,52,0.13);
}

/* ----------------------------
   10. COOKIE CONSENT BANNER
---------------------------- */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 3000;
    width: 100vw;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(46,81,52,0.06);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 16px 32px;
    transition: transform 0.32s cubic-bezier(.45,.05,.55,.95), opacity 0.2s;
    opacity: 0;
    pointer-events: none;
    font-size: 1rem;
}
.cookie-consent-banner.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
@media (max-width: 530px) {
    .cookie-consent-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 18px 10px 18px 10px;
        font-size: 0.97rem;
    }
}
.cookie-consent-banner .cookie-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.cookie-consent-banner .btn-primary,
.cookie-consent-banner .btn-secondary,
.cookie-consent-banner .btn-outline {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(46,81,52,0.11);
    z-index: 3200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.cookie-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.cookie-modal {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(46, 81, 52, 0.18);
    padding: 36px 36px 23px 36px;
    min-width: 91vw;
    max-width: 410px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    animation: fadeIn .33s cubic-bezier(.45,.05,.55,.95);
}
@keyframes fadeIn {
    from { transform: translateY(44px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #2E5134;
    z-index: 2;
    cursor: pointer;
}
.cookie-modal-close:hover {
    color: #A3C9A8;
}

.cookie-category {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0ef;
}
.cookie-category:last-child {
    border-bottom: none;
}
.cookie-category label {
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-size: 1rem;
}

.cookie-toggle {
    width: 42px;
    height: 24px;
    border-radius: 14px;
    background: #A3C9A8;
    position: relative;
    transition: background 0.18s;
    flex-shrink: 0;
    cursor: pointer;
}
.cookie-toggle[aria-checked="true"] {
    background: #2E5134;
}
.cookie-toggle .toggle-ball {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: left 0.18s cubic-bezier(.45,.05,.55,.95);
}
.cookie-toggle[aria-checked="true"] .toggle-ball {
    left: 20px;
}

.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid #f0f0ef;
}

/* -------------
    ANIMATIONS
---------------- */
.btn-primary, .btn-secondary, .btn-outline, .card, .testimonial-card, .mobile-menu {
    transition: box-shadow 0.2s, background 0.16s, color 0.18s, transform 0.24s;
}

/* --------------
   MISC UTILITIES
----------------- */
[hidden] { display: none !important; }

::-webkit-scrollbar { width: 10px; background: #F7F7F2; }
::-webkit-scrollbar-thumb { background: #e4ede5; border-radius: 7px; }

/* Ensure all flex layouts have minimum spacing: */
.card-container, .content-grid, .text-image-section {
    gap: 20px;
}
.card, .testimonial-card, .feature-item {
    margin-bottom: 20px;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}

/* -------------------
   ACCESSIBILITY
---------------------*/
a:focus, button:focus {
    outline: 2px dashed #A3C9A8;
    outline-offset: 2px;
}

/* Hide visually (for accessibility): */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  white-space: nowrap; clip-path: inset(50%);
  clip: rect(0 0 0 0); overflow: hidden;
}

/* --------
 END FILE
--------- */
