/* 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  background: #F4F7E9;
  color: #2C3721;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  border-radius: 12px;
}
ul, ol {
  list-style: none;
}
a {
  color: #23613B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7CA87A;
  outline: none;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #23613B;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
strong {
  color: #23613B;
  font-weight: 600;
}
.subheadline {
  font-family: 'Merriweather', serif;
  color: #7CA87A;
  font-size: 1.2rem;
  margin-bottom: 24px;
  font-weight: 500;
}
.text-section p {
  margin-bottom: 16px;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper, .text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --- SPACING PATTERNS & LAYOUTS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(44, 55, 33, 0.09);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fffdf9;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(244, 193, 81, 0.07);
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(44, 55, 33, 0.10);
  color: #22613B;
  font-size: 1.06rem;
  max-width: 520px;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER NAVIGATION --- */
header {
  width: 100%;
  background: #FBE6C2;
  box-shadow: 0 2px 12px 0 rgba(44, 55, 33, 0.06);
  padding: 0;
  z-index: 11;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #22613B;
  font-size: 1rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: #E3F2DF;
  color: #23613B;
}
header img {
  max-height: 48px;
  width: auto;
  border-radius: 14px;
  background: #faf9f5;
  padding: 2px 8px 2px 2px;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #23613B;
  cursor: pointer;
  margin-left: 12px;
  line-height: 1;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E3F2DF;
}
.btn-primary {
  background: #23613B;
  color: #fff;
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 12px 34px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(44, 55, 33, 0.10);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  outline: none;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #3C8353;
  color: #fffdf9;
  box-shadow: 0 4px 16px 0 rgba(44, 55, 33, 0.15);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44, 55, 33, 0.15);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.57,.06,.36,.95);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #fff;
  border: none;
  font-size: 2rem;
  color: #23613B;
  margin: 30px 24px 0 0;
  align-self: flex-end;
  border-radius: 8px;
  padding: 2px 10px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(44, 55, 33, 0.10);
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E3F2DF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #fff;
  width: 88vw;
  max-width: 370px;
  min-height: 100vh;
  padding: 44px 40px 34px 34px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: -3px 0 18px 0 rgba(44, 55, 33, 0.14);
  position: relative;
}
.mobile-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #22613B;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 8px 12px 2px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e3f2df;
  color: #3C8353;
}

/* --- MAIN STYLES & HERO --- */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 32px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
section .container {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 0;
}

/* --- FEATURE & CARD LISTS --- */
.content-wrapper > ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin: 20px 0;
}
.content-wrapper > ul li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(44, 55, 33, 0.09);
  padding: 24px 18px 18px;
  min-width: 220px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0;
  font-size: 1.06rem;
  color: #336437;
}
.content-wrapper > ul li img {
  margin-bottom: 10px;
  width: 38px;
  height: 38px;
}

/* --- ARTICLE & BLOG PREVIEWS --- */
article {
  background: #fffdf9;
  border-radius: 13px;
  box-shadow: 0 1px 7px 0 rgba(244, 193, 81, 0.07);
  margin-bottom: 18px;
  padding: 22px 18px 14px;
  transition: box-shadow 0.23s;
}
article:hover {
  box-shadow: 0 4px 18px 0 rgba(35, 97, 59, 0.10);
}
article h3, article h4 {
  margin-bottom: 8px;
  color: #23613B;
}
article span {
  color: #7CA87A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.99rem;
}

/* --- FOOTER --- */
footer {
  background: #FBE6C2;
  padding: 0;
  box-shadow: 0 -2px 12px 0 rgba(44, 55, 33, 0.04);
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 20px 18px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
footer nav a {
  font-size: 1rem;
  color: #23613B;
  padding: 5px 10px;
  border-radius: 8px;
  font-weight: 500;
}
footer nav a:hover,footer nav a:focus {
  background: #E3F2DF;
}
footer .text-section {
  text-align: right;
}
footer .text-section p {
  font-size: 0.96rem;
  color: #23613B;
  margin-bottom: 3px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -2px 16px 0 rgba(44, 55, 33, 0.16);
  padding: 22px 16px;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  font-size: 1rem;
  animation: cookieBounceIn 0.35s cubic-bezier(.39,.575,.565,1.000);
}
@keyframes cookieBounceIn {
  0% { transform: translateY(120%); opacity: 0; }
  90% { transform: translateY(-5px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #23613B;
  font-size: 1rem;
  margin: 0;
  flex: 1 1 320px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  padding: 9px 22px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  font-weight: 700;
  transition: background .18s, color .18s;
}
.cookie-btn.accept {
  background: #23613B;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #3C8353; }
.cookie-btn.reject {
  background: #E3F2DF;
  color: #23613B;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FBE6C2;
  color: #23613B;
}
.cookie-btn.settings {
  background: #fff;
  color: #7CA87A;
  border: 2px solid #7CA87A;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E3F2DF;
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(44, 55, 33, 0.26);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity .26s;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -2px 18px 0 rgba(44, 55, 33, 0.16);
  padding: 38px 24px 28px;
  width: 100%;
  max-width: 430px;
  margin-bottom: 0;
  animation: modalIn 0.33s cubic-bezier(.4,.65,.56,1.07);
}
@keyframes modalIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid #E3F2DF;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category .switch {
  margin-right: 8px;
}
.cookie-category label {
  font-weight: 600;
  color: #23613B;
  font-size: 1rem;
}
.cookie-category .desc {
  color: #333a2c;
  font-size: 0.96rem;
  margin-top: 3px;
  margin-bottom: 0;
}
.cookie-modal-actions {
  display: flex; gap: 18px; justify-content: flex-end;
}
.cookie-modal .close-btn {
  background: none;
  border: none;
  color: #7CA87A;
  font-size: 1.6rem;
  float: right;
  cursor: pointer;
  margin-top: -28px;
  margin-right: -8px;
  border-radius: 6px;
  padding: 1px 10px;
  transition: background 0.2s;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  background: #E3F2DF;
}
.switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 24px;
}
.switch input {display: none;}
.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E3F2DF;
  border-radius: 32px;
  transition: background .22s;
}
.switch-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #7CA87A;
  border-radius: 50%;
  transition: transform .22s;
}
.switch input:checked + .switch-slider {
  background: #7CA87A;
}
.switch input:checked + .switch-slider:before {
  transform: translateX(14px);
  background: #23613B;
}
.switch[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
  header .container, footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  footer .text-section { text-align: left; }
}
@media (max-width: 800px) {
  .container {
    max-width: 96vw;
  }
  .content-wrapper > ul {
    flex-direction: column;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 100%;
  }
  .cookie-modal {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.23rem;
    margin-bottom: 12px;
  }
  .section {
    padding: 28px 6px;
    margin-bottom: 38px;
  }
  section {
    padding: 24px 0;
    margin-bottom: 32px;
  }
  .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  header .container, footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  header nav { display: none; }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 10px 22px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 7px;
  }
}

@media (max-width: 520px) {
  h1 { font-size: 1.21rem; }
  .btn-primary, .cookie-btn {
    font-size: 0.98rem;
    padding: 9px 12px;
  }
  .cookie-banner {
    font-size: 0.97rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 10px 2px;
  }
}

/* --- UTILITIES & MICROS --- */
.rounded {
  border-radius: 16px;
}
.soft-shadow {
  box-shadow: 0 2px 8px 0 rgba(44,55,33,.09);
}
.friendly-bg {
  background: #FBE6C2;
}
.text-center {
  text-align: center;
}
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/* --- FORM ELEMENTS --- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border: 1.5px solid #E3F2DF;
  border-radius: 11px;
  margin-bottom: 14px;
  background: #FCFCF7;
  box-shadow: 0 1px 3px 0 rgba(44, 55, 33, 0.05);
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #7CA87A;
  outline: none;
}
button {
  font-family: inherit;
}

/* --- MICROINTERACTIONS & TRANSITIONS --- */
.btn-primary, .cookie-btn, .mobile-menu-close, .mobile-menu-toggle {
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
}

.section, .card, .testimonial-card, .cookie-banner, .btn-primary, .card-container > *, .content-wrapper > ul > li, article {
  transition: box-shadow 0.19s, transform 0.17s;
}
.card:hover, .testimonial-card:hover, .content-wrapper > ul > li:hover {
  box-shadow: 0 7px 30px 0 rgba(35,97,59,0.16);
  transform: translateY(-3px) scale(1.015);
}

/* --- FAQ/HELPFUL STATUS --- */
.status-ok { color: #23613B; }
.status-warn { color: #E19723; }
.status-err { color: #C36A2D; }

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 2px dashed #23613B;
  outline-offset: 2px;
}
a:focus-visible, .btn-primary:focus-visible {
  outline: 2px solid #7CA87A;
  outline-offset: 3px;
}

/* --- MISC --- */
.hide { display: none !important; }

/* END OF CSS */
