/* === 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, 
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
 display: block;
}
body {
 line-height: 1.4;
 background: #FAFAFA;
 color: #253028;
 min-height: 100vh;
 font-family: 'Roboto', Arial, sans-serif;
 -webkit-font-smoothing: antialiased;
}
ul, ol {
 padding-left: 28px;
}
a {
 color: #163147;
 text-decoration: none;
 transition: color 0.2s ease;
}
a:hover, a:focus {
 color: #206e3a;
}
img {
 max-width: 100%;
 height: auto;
 display: block;
}
button, input, select, textarea {
 font-family: inherit;
 font-size: inherit;
 outline: none;
 border: none;
}

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4 {
 font-family: 'Montserrat', Arial, sans-serif;
 color: #163147;
 font-weight: 900;
 letter-spacing: -0.5px;
}
h1 {
 font-size: 2.2rem;
 margin-bottom: 28px;
 line-height: 1.15;
}
h2 {
 font-size: 1.5rem;
 margin-bottom: 18px;
 font-weight: 700;
}
h3 {
 font-size: 1.15rem;
 margin-bottom: 12px;
 font-weight: 700;
}
h4 {
 font-size: 1rem;
 font-weight: 700;
}
p {
 font-size: 1rem;
 margin-bottom: 20px;
 line-height: 1.7;
 color: #253028;
}
strong {
 font-weight: 700;
 color: #163147;
}

/* ====== LAYOUT CONTAINERS ====== */
.container {
 width: 100%;
 max-width: 1140px;
 margin-left: auto;
 margin-right: auto;
 padding-left: 18px;
 padding-right: 18px;
 display: flex;
 flex-direction: column;
}
.content-wrapper {
 width: 100%;
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 18px;
}

section {
 background: #fff;
 border-radius: 28px;
 box-shadow: 0 4px 24px 0 rgba(36,55,28,0.04), 0 1.5px 8px 0 rgba(100,87,59,0.10);
 margin-bottom: 60px;
 padding: 40px 20px;
 position: relative;
}

.text-section,
.text-image-section {
 display: flex;
 flex-direction: column;
 gap: 15px;
 align-items: flex-start;
}

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

@media (max-width: 768px) {
 .text-image-section {
   flex-direction: column;
   gap: 18px;
   align-items: stretch;
 }
}

.features-grid {
 display: flex;
 flex-wrap: wrap;
 gap: 24px;
 margin-bottom: 0;
}
.feature {
 background: #F9F7F3;
 border-radius: 18px;
 padding: 32px 22px;
 flex: 1 1 220px;
 min-width: 220px;
 margin-bottom: 20px;
 box-shadow: 0 2px 8px 0 rgba(88,110,40,0.05);
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 14px;
 transition: box-shadow 0.2s;
}
.feature img {
 width: 44px;
 height: 44px;
 margin-bottom: 5px;
 filter: drop-shadow(0 1px 3px rgba(37,48,40,0.12));
}
.feature:hover {
 box-shadow: 0 4px 24px 0 rgba(100,87,59,0.08);
 background: #F5F8F6;
}

/* ======= BUTTON STYLES (CTA) ======= */
.cta-btn {
 display: inline-block;
 background-color: #206e3a;
 color: #FAFAFA;
 font-family: 'Montserrat', Arial, sans-serif;
 font-weight: 700;
 letter-spacing: 0.1em;
 border-radius: 999px;
 padding: 13px 36px;
 font-size: 1.08rem;
 margin-top: 12px;
 transition: background 0.18s, box-shadow 0.18s, color 0.18s;
 box-shadow: 0 2px 8px 0 rgba(35,98,82,0.07);
 border: 2px solid #206e3a;
 outline: none;
 cursor: pointer;
 text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
 background-color: #F2A341;
 color: #163147;
 border: 2px solid #F2A341;
 box-shadow: 0 8px 24px 0 rgba(242,163,65,0.12);
}

/* ===== HEADERS + NAVBAR ===== */
header {
 background: #fff;
 box-shadow: 0 2px 8px rgba(28,36,21,0.04);
 padding: 0;
 position: sticky;
 top: 0; left: 0; right: 0;
 z-index: 998;
}
header .container {
 flex-direction: row;
 align-items: center;
 justify-content: space-between;
 min-height: 78px;
}
header img {
 height: 46px;
 width: auto;
 margin-right: 24px;
}
nav {
 display: flex;
 flex-direction: row;
 align-items: center;
 gap: 20px;
}
nav a {
 font-family: 'Montserrat', Arial, sans-serif;
 font-size: 1rem;
 font-weight: 500;
 color: #163147;
 letter-spacing: 0.03em;
 border-radius: 16px;
 padding: 7px 18px;
 transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus {
 background: #E2EBCB;
 color: #206e3a;
}
header .cta-btn {
 margin-left: 18px;
 margin-top: 0;
}

.mobile-menu-toggle {
 display: none;
 background: none;
 border: none;
 font-size: 2rem;
 color: #163147;
 padding: 10px;
 cursor: pointer;
 margin-left: 12px;
 z-index: 1100;
}

@media (max-width: 1025px) {
 header nav {
   gap: 12px;
 }
}

@media (max-width: 900px) {
 header .container {
   gap: 10px;
 }
 nav {
   gap: 8px;
 }
}

@media (max-width: 768px) {
 header nav, header .cta-btn {
   display: none;
 }
 .mobile-menu-toggle {
   display: block;
 }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
 position: fixed;
 top: 0; left: 0; height: 100vh; width: 100vw;
 background: rgba(36, 51, 30, 0.96);
 z-index: 1500;
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 align-items: flex-start;
 transform: translateX(100%);
 transition: transform 0.4s cubic-bezier(.67,.32,.25,1);
 overflow-y: auto;
 box-shadow: -3px 0 16px rgba(36,51,30,0.16);
}
.mobile-menu.open {
 transform: translateX(0);
}
.mobile-menu-close {
 background: transparent;
 border: none;
 color: #F2A341;
 font-size: 2.3rem;
 margin: 18px 0 10px 18px;
 align-self: flex-start;
 cursor: pointer;
 transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
 color: #fff9d0;
}
.mobile-nav {
 display: flex;
 flex-direction: column;
 gap: 13px;
 width: 100%;
 align-items: stretch;
 margin: 12px 0 0 24px;
}
.mobile-nav a {
 color: #FAFAFA;
 background: none;
 font-family: 'Montserrat', Arial, sans-serif;
 font-size: 1.2rem;
 font-weight: 600;
 padding: 13px 10px 13px 0;
 border-radius: 10px;
 transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
 background: #206e3a;
 color: #F2A341;
}

/* ===== MAIN & PAGE LAYOUTS ===== */
main {
 width: 100%;
 min-height: calc(100vh - 110px);
 background: none;
}
.section {
 margin-bottom: 60px;
 padding: 40px 20px;
 background: #fff;
 border-radius: 28px;
 box-shadow: 0 4px 24px 0 rgba(36,55,28,0.04), 0 1.5px 8px 0 rgba(100,87,59,0.10);
}
.card-container {
 display: flex;
 flex-wrap: wrap;
 gap: 24px;
}
.card {
 margin-bottom: 20px;
 position: relative;
 background: #fff;
 border-radius: 19px;
 box-shadow: 0 2.5px 9px rgba(36,55,28,0.07);
 padding: 25px 22px;
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 min-width: 220px;
 max-width: 100%;
 transition: box-shadow 0.17s;
}
.card:hover {
 box-shadow: 0 7px 22px 0 rgba(100,87,59,0.10);
}
.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;
 padding: 20px;
 background: #E2EBCB;
 border-radius: 18px;
 margin-bottom: 20px;
 box-shadow: 0 3px 10px rgba(82,122,62,0.08);
 font-size: 1.08rem;
 color: #222e20;
 flex-direction: column;
 text-align: left;
 transition: box-shadow 0.18s;
}
.testimonial-card:before {
 content: "\201C";
 font-size: 3.5rem;
 color: #206e3a22;
 align-self: flex-start;
 line-height: 1;
 margin: -12px 0 0 -5px;
 position: absolute;
 z-index: 1;
 pointer-events: none;
}
.testimonial-card p {
 margin-bottom: 7px;
 z-index: 2;
 position: relative;
}
.testimonial-card strong {
 color: #206e3a;
}
.testimonial-card:hover {
 box-shadow: 0 12px 26px 0 rgba(76,130,72,0.10);
 background: #f5faee;
}

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

/* ----------- FOOTER ----------- */
footer {
 background: #E2EBCB;
 border-top: 1.5px solid #D4EBC2;
 padding: 38px 0 28px 0;
 color: #1B2A16;
}
footer .container {
 flex-direction: row;
 justify-content: space-between;
 align-items: flex-start;
 gap: 30px;
}
footer nav {
 flex-direction: column;
 gap: 8px;
}
footer nav a {
 color: #1B2A16;
 font-size: 1rem;
 font-family: 'Montserrat', Arial, sans-serif;
 padding: 3px 0;
 border-radius: 10px;
 transition: color 0.15s, background 0.15s;
}
footer nav a:hover, footer nav a:focus {
 color: #206e3a;
 background: #E8FAE1;
}
.footer-address p {
 font-size: 0.96rem;
 color: #344328;
 margin-bottom: 6px;
 letter-spacing: 0.01em;
}

@media (max-width: 900px) {
 footer .container {
   flex-direction: column;
   gap: 12px;
   align-items: flex-start;
 }
}

/* --- FORM ELEMENTS & UTILS --- */
input[type="text"], input[type="email"], textarea {
 border: 1.5px solid #A8B287;
 border-radius: 10px;
 background: #FEFEF8;
 padding: 12px 16px;
 font-size: 1rem;
 margin-bottom: 12px;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
 border: 1.8px solid #206e3a;
 background: #fff;
}
label {
 font-size: 1rem;
 font-family: 'Montserrat', Arial, sans-serif;
 margin-bottom: 4px;
 color: #253028;
 font-weight: 500;
}

/* --- LISTS --- */
ul, ol {
 margin-bottom: 20px;
 font-size: 1rem;
}
ul li, ol li {
 margin-bottom: 8px;
 line-height: 1.6;
}
ul li img {
 width: 22px;
 height: 22px;
 margin-right: 8px;
 vertical-align: middle;
}

/* --- COOKIES BANNER --- */
.cookie-banner {
 position: fixed;
 bottom: 0; left: 0; width: 100vw;
 background: #fefef8;
 color: #182612;
 box-shadow: 0 -2px 16px rgba(42,48,10,0.09);
 z-index: 2100;
 display: flex;
 flex-direction: row;
 justify-content: center;
 align-items: center;
 gap: 32px;
 padding: 22px 20px;
 font-size: 1rem;
 border-top-left-radius: 18px;
 border-top-right-radius: 18px;
 transition: transform 0.4s cubic-bezier(.67,.32,.25,1);
}
@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; gap: 13px; text-align: left; }
}
.cookie-banner[aria-hidden="true"] {
 transform: translateY(150%);
 pointer-events: none;
 opacity: 0.0;
}
.cookie-banner .cookie-btn {
 background: #206e3a;
 color: #F9F7F3;
 border-radius: 12px;
 padding: 10px 26px;
 margin: 0 4px;
 border: 2px solid #206e3a;
 font-family: 'Montserrat', Arial, sans-serif;
 font-size: 1rem;
 font-weight: 600;
 cursor: pointer;
 transition: background 0.17s, color 0.17s, border 0.13s;
}
.cookie-banner .cookie-btn.secondary {
 background: #F8F6EF;
 color: #206e3a;
 border: 2px solid #206e3a;
}
.cookie-banner .cookie-btn.settings {
 background: #F2A341;
 color: #163147;
 border: 2px solid #F2A341;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
 box-shadow: 0 1.5px 8px 0 rgba(20,62,30,0.13);
 filter: brightness(1.08);
}

/* ===== COOKIE MODAL POPUP ===== */
.cookie-modal {
 position: fixed;
 left: 0; top: 0;
 width: 100vw;
 height: 100vh;
 z-index: 3000;
 display: flex;
 align-items: center;
 justify-content: center;
 background: rgba(44, 52, 12, 0.21);
 pointer-events: auto;
 transition: opacity 0.32s;
}
.cookie-modal[aria-hidden="true"] {
 opacity: 0;
 pointer-events: none;
}
.cookie-modal-content {
 background: #fff;
 border-radius: 20px;
 max-width: 420px;
 width: 93vw;
 padding: 35px 28px 28px 28px;
 color: #163147;
 box-shadow: 0 12px 32px 0 rgba(80,106,77,0.09);
 display: flex;
 flex-direction: column;
 gap: 22px;
}
.cookie-modal-content h2 {
 font-size: 1.36rem;
 margin-bottom: 8px;
}
.cookie-category {
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: space-between;
 gap: 14px;
 margin-bottom: 16px;
 font-size: 1.03rem;
 font-family: 'Roboto', Arial, sans-serif;
}
.cookie-toggle {
 width: 50px;
 height: 28px;
 border-radius: 15px;
 background: #E2EBCB;
 position: relative;
 transition: background 0.2s;
 display: inline-flex !important;
 align-items: center;
 margin-left: 7px;
}
.cookie-toggle input[type="checkbox"] {
 display: none;
}
.cookie-toggle label {
 position: absolute;
 left: 0; top: 0;
 width: 50px; height: 28px;
 cursor: pointer;
}
.cookie-toggle .slider {
 position: absolute;
 left: 3px; top: 2.3px;
 width: 23px; height: 23px;
 border-radius: 50%;
 background: #206e3a;
 transition: left 0.2s, background 0.2s;
}
.cookie-toggle input[type="checkbox"]:checked ~ .slider {
 left: 24px;
 background: #F2A341;
}
.cookie-modal-content .close-modal-btn {
 align-self: flex-end;
 background: transparent;
 border: none;
 font-size: 1.9rem;
 color: #B7B77C;
 margin: -20px -10px 0 0;
 cursor: pointer;
}
.cookie-modal-content .close-modal-btn:hover {
 color: #163147;
}
.cookie-modal-actions {
 display: flex;
 flex-direction: row;
 gap: 12px;
 margin-top: 4px;
}
.cookie-modal-actions button {
 padding: 11px 22px;
 font-weight: 700;
 border-radius: 10px;
 cursor: pointer;
 font-family: 'Montserrat', Arial, sans-serif;
 border: 2px solid #206e3a;
 background: #F9F7F3;
 color: #206e3a;
 transition: background .16s, color .16s;
}
.cookie-modal-actions button.accept-btn {
 background: #206e3a;
 color: #fff;
}
.cookie-modal-actions button.accept-btn:hover,
.cookie-modal-actions button.accept-btn:focus {
 background: #F2A341;
 color: #163147;
 border-color: #F2A341;
}
.cookie-modal-actions button.reject-btn {
 background: #fff;
 color: #163147;
 border-color: #163147;
}
.cookie-modal-actions button.reject-btn:hover,
.cookie-modal-actions button.reject-btn:focus {
 background: #F2A341;
 color: #163147;
 border-color: #F2A341;
}
.cookie-modal-actions button.settings-btn {
 background: #F2A341;
 color: #163147;
 border-color: #F2A341;
}

/* ======= ORGANIC/NATURE SHAPES ======= */
section, .feature, .card, .testimonial-card, .cookie-banner, .cookie-modal-content {
 border-radius: 22px 32px 25px 19px/30px 17px 21px 15px;
}

/* Add subtle texture background to hero/major sections */
@media (min-width: 769px) {
 section:first-child {
   background: #f3fbf4 url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse opacity='0.11' cx='30' cy='30' rx='28' ry='22' fill='%23206e3a'/%3E%3C/svg%3E") no-repeat right -25px top -25px;
   background-size: 190px;
 }
}

/* === SPACING ADJUSTMENTS FOR MOBILE === */
@media (max-width: 768px) {
 h1 { font-size: 1.44rem; }
 h2 { font-size: 1.18rem;}
 .container { padding-left: 10px; padding-right: 10px; }
 section {
   padding: 24px 7px;
   margin-bottom: 42px;
 }
 .features-grid {
   gap: 11px;
 }
 .feature {
   min-width: 140px;
   padding: 19px 11px;
   gap: 7px;
 }
 .testimonial-card {
   padding: 13px;
   font-size: 0.99rem;
 }
 .cookie-modal-content {
   padding: 16px 7px 17px 7px;
   gap: 12px;
 }
}

/* === ANIMATIONS === */
.cta-btn, .feature, .testimonial-card, .card {
 transition: box-shadow 0.2s, background 0.18s, color 0.17s, transform 0.2s;
}
.cta-btn:active { transform: scale(0.98); }

[tabindex="0"]:focus, a:focus, button:focus {
 outline: 2px solid #F2A341;
 outline-offset: 2px;
}

/* === SCROLLBAR FOR ORGANIC FLAVOR === */
body::-webkit-scrollbar, .mobile-menu::-webkit-scrollbar {
 width: 10px;
 background: #E2EBCB;
 border-radius: 12px;
}
body::-webkit-scrollbar-thumb, .mobile-menu::-webkit-scrollbar-thumb {
 background: #C7DFAD;
 border-radius: 10px;
}

/* === MISC ORGANIC ELEMENTS === */
.feature, .testimonial-card, .card {
 border: 1.2px solid #E2EBCB;
}

@media (max-width: 560px) {
 h1, h2, h3, h4 { text-align: left; }
}

/* ========== Accessibility ========== */
@media (prefers-reduced-motion: reduce) {
 * {
   transition: none !important;
 }
}


/* === END === */