/* --- 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, main, 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 { line-height: 1.15; -webkit-text-size-adjust: 100%; }
body { color: #273116; background: #F0F6F2; font-family: 'Roboto', Arial, sans-serif; font-size: 16px; }
article, aside, details, figcaption, figure, footer, header, main, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a { color: #23613B; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #899C2B; }
img { max-width: 100%; height: auto; display: block; }

/* --- BRAND VARIABLES --- */
:root {
  --color-primary: #23613B;
  --color-secondary: #F0F6F2;
  --color-accent: #899C2B;
  --color-dark: #273116;
  --color-white: #FFFFFF;
  --color-grey: #E8EFE6;
  --color-warm-bg: #FEFBEF;
  --color-warm: #F9E6C3;
}

/* --- TYPOGRAPHY --- */
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--color-dark);
  background: var(--color-secondary);
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--color-accent); }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }
p, ul, ol { font-size: 1rem; }
strong { color: var(--color-primary); font-weight: 600; }

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

/* --- CONTAINER & GENERAL SPACING --- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-warm-bg);
  border-radius: 28px;
  box-shadow: 0 2px 14px 0 rgba(35, 97, 59, 0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 600px) {
  .section { padding: 24px 8px; border-radius: 18px; }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(137, 156, 43, 0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(137, 156, 43, 0.18);
  transform: translateY(-3px) scale(1.013);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 22px;
  background: var(--color-white);
  box-shadow: 0 2px 16px 0 rgba(35,97,59,0.10);
  margin-bottom: 20px;
  color: var(--color-dark);
  flex-direction: column;
  min-width: 0;
  transition: box-shadow 0.18s;
  border-left: 6px solid var(--color-primary);
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(137,156,43,0.13);
}
.testimonial-card strong {
  font-size: 1.08em;
  color: var(--color-accent);
}
.testimonial-card p {
  color: var(--color-primary);
  margin: 0;
}

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


/* --- HEADER & NAVIGATION --- */
header {
  background: var(--color-white);
  box-shadow: 0 2px 12px 0 rgba(35,97,59,0.07);
  padding: 0;
  width: 100vw;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 0;
  justify-content: space-between;
  min-height: 72px;
}
header img {
  height: 48px;
}
nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  color: var(--color-primary);
  padding: 6px 16px;
  border-radius: 14px;
  transition: background 0.16s, color 0.16s;
  font-weight: 500;
}
nav a:hover, nav a:focus {
  background: var(--color-warm);
  color: var(--color-accent);
  outline: none;
}

.mobile-menu-toggle {
  display: none;
}

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

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: var(--color-warm);
    border: none;
    border-radius: 12px;
    font-size: 2.1rem;
    color: var(--color-primary);
    padding: 6px 16px;
    cursor: pointer;
    margin-left: 10px;
    transition: background 0.18s, color 0.18s;
    outline: none;
  }
  .mobile-menu-toggle:focus,
  .mobile-menu-toggle:hover {
    background: var(--color-accent);
    color: var(--color-white);
  }
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(35,97,59,0.95);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.77,0,.175,1);
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-warm);
  font-size: 2rem;
  margin: 24px 0 12px 24px;
  align-self: flex-start;
  cursor: pointer;
  border-radius: 8px;
  padding: 4px 12px;
  transition: background 0.18s,color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
  background: var(--color-warm);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 32px;
  margin-top: 14px;
}
.mobile-nav a {
  color: var(--color-white);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  background: none;
  border-radius: 11px;
  transition: background 0.16s, color 0.16s;
  padding: 10px 16px;
  letter-spacing: 0.01em;
  min-width: 180px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* --- HERO SECTION --- */
.hero {
  width: 100%;
  min-height: 310px;
  background: linear-gradient(100deg, #FEFBEF 60%, #F9E6C3 100%);
  border-radius: 0 0 36px 36px;
  margin-bottom: 52px;
  box-shadow: 0 2px 24px rgba(137,156,43,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  min-height: 270px;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.3rem;
  margin-bottom: 14px;
  margin-top: 0;
}
.hero p {
  color: #413f33;
  font-size: 1.16rem;
  margin-bottom: 17px;
}

.cta-button {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-secondary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 32px;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(35, 97, 59, 0.08);
  text-align: center;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.16s;
  letter-spacing: 0.01em;
  margin-top: 8px;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-primary);
  color: var(--color-warm);
  box-shadow: 0 6px 20px 0 rgba(35, 97, 59, 0.18);
  transform: translateY(-2px) scale(1.035);
  outline: none;
}

/* --- LISTS, FAQ, FEATURES --- */
ul, ol {
  margin-left: 20px;
  margin-bottom: 10px;
}
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.7;
  position: relative;
}
ul li::before {
  content: '\2022';
  color: var(--color-accent);
  font-size: 1.18em;
  margin-right: 10px;
  position: relative;
  top: -1px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 22px;
}
.feature-grid > div {
  min-width: 220px;
  flex: 1 1 260px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(137,156,43,0.09);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 22px 0 rgba(137,156,43,0.13);
  transform: translateY(-3px) scale(1.015);
}

@media (max-width: 900px) {
  .feature-grid { gap: 14px; }
  .feature-grid > div { min-width: 180px; padding: 16px 10px; }
}
@media (max-width: 600px) {
  .feature-grid { flex-direction: column; gap: 15px; }
  .feature-grid > div { width: 100%; min-width: 0; }
}

/* --- TEXT SECTIONS --- */
.text-section {
  background: var(--color-grey);
  padding: 20px 22px;
  border-radius: 16px;
  box-shadow: 0 1px 6px 0 rgba(137,156,43,0.03);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section h3 {
  margin: 18px 0 6px 0;
  color: var(--color-accent);
  font-size: 1.11rem;
  font-weight: 700;
}
.text-section a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.16s;
}
.text-section a:hover { color: var(--color-accent); }

/* --- FOOTER --- */
footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 34px 0 16px 0;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -1px 12px rgba(137,156,43,0.05);
  width: 100vw;
  margin-top: 36px;
}
footer .container {
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 0;
}
footer nav {
  display: flex;
  gap: 18px;
}
footer nav a {
  color: var(--color-warm);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 8px;
  transition: background 0.18s, color 0.16s;
}
footer nav a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}
footer p {
  margin: 10px 0 0 0;
  font-size: 0.92rem;
  color: var(--color-warm);
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  footer nav {
    flex-direction: column;
    gap: 9px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: var(--color-warm-bg);
  border-top: 6px solid var(--color-accent);
  box-shadow: 0 -4px 28px 0 rgba(35,97,59,0.14);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 18px 12px 18px;
  gap: 14px;
  font-size: 1rem;
  transition: transform 0.36s cubic-bezier(.77,0,.175,1), opacity 0.26s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-banner button {
  border: none;
  border-radius: 12px;
  padding: 10px 22px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.15s;
}
.cookie-banner .accept {
  background: var(--color-primary);
  color: var(--color-warm-bg);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.cookie-banner .reject {
  background: var(--color-grey);
  color: var(--color-primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--color-accent);
  color: var(--color-white);
}
.cookie-banner .settings {
  background: var(--color-warm);
  color: var(--color-dark);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-accent);
  color: var(--color-white);
}
@media (max-width: 600px) {
  .cookie-banner { font-size: 0.98rem; padding: 10px 2px 7px 2px; }
  .cookie-banner .cookie-buttons { gap: 8px; }
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  z-index: 200;
  left: 0; top: 0; right: 0; bottom:0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(35,97,59,0.34);
  transition: opacity 0.33s;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .cookie-modal-box {
  background: var(--color-secondary);
  border-radius: 22px;
  box-shadow: 0 8px 34px 0 rgba(35,97,59,0.17);
  padding: 32px 22px 22px 22px;
  min-width: 320px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal h2 { font-size: 1.44rem; color: var(--color-primary);}
.cookie-modal .close-cookie-modal {
  position: absolute; right: 18px; top: 14px;
  background: none; border: none;
  color: var(--color-accent);
  font-size: 2rem; cursor: pointer;
  border-radius: 8px;
  padding: 4px 12px;
  transition: background 0.18s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  background: var(--color-warm);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-warm-bg);
  border-radius: 11px;
  padding: 10px 14px;
  font-size: 1.03rem;
}
.cookie-category input[type=checkbox], .cookie-category input[type=radio] {
  width: 20px; height: 20px;
  accent-color: var(--color-accent);
}
.cookie-category .cookie-required {
  color: var(--color-accent);
  font-size: 0.98rem;
  margin-left: 6px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
  width: 100%;
}
.cookie-modal .cookie-modal-actions button {
  flex: 1 1 0;
  min-width: 120px;
}

/* --- RESPONSIVE LAYOUTS & UTILITIES --- */
@media (max-width: 1050px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .container { padding: 0 12px; }
  .section { margin-bottom: 34px; }
  .hero { min-height: 180px; padding: 22px 0; border-radius: 0 0 20px 20px; }
}
@media (max-width: 600px) {
  .content-grid { flex-direction: column; gap: 12px; }
  .section { padding: 18px 0px 18px 0px; }
}

/* --- CUSTOM SCROLLBAR --- */
body::-webkit-scrollbar { width: 10px; background: var(--color-warm-bg); }
body::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 8px; }

/* --- FOCUS VISIBLE --- */
:focus { outline: none !important; box-shadow: 0 0 0 3px var(--color-accent) !important; transition: box-shadow 0.19s; }

/* --- MICRO-INTERACTIONS --- */
button, .cta-button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.15s, transform 0.16s;
}
button:active, .cta-button:active {
  transform: scale(0.98);
}

/* --- ADDITIONAL SPACING UTILITIES --- */
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }

/* --- MODALS GENERIC --- */
.modal-bg {
  position: fixed;
  left: 0; top: 0; right: 0; bottom:0;
  background: rgba(35,97,59,0.16);
  z-index: 100;
}

/* --- PRINT OVERRIDE --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff; color: #000; }
}

/* --- END OF STYLE.CSS --- */
