/* =====================================================
   CSS RESET & BASELINE NORMALIZATION
===================================================== */
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,
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 {
  scroll-behavior: smooth;
}
body {
  background: #F5F7FA;
  color: #28403E;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #33613C;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #F8B400;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
  padding-left: 20px;
}
strong {
  font-weight: 700;
}

/* =============
   BRAND COLOR PALETTE — NATURE ORGANIC VARIATION
   Use of earth tones, organic shapes, green accents
============= */
:root {
  --brand-primary: #15202B;
  --brand-secondary: #F8B400;
  --brand-accent: #D8DEE9;
  --nature-green: #33613C;
  --nature-earth: #99834F;
  --nature-clay: #A2745C;
  --nature-ivory: #FCFAF7;
  --nature-lighter: #F5F7FA;
  --nature-dark: #28403E;
  --shadow: 0 2px 16px rgba(52, 62, 44, 0.10);
}

/* =============
  TYPOGRAPHY
============= */
h1, h2, h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--nature-dark);
  text-rendering: optimizeLegibility;
  letter-spacing: 0.01em;
}
h1 {
  font-weight: 700;
  font-size: 2.75rem;
  margin-bottom: 24px;
  line-height: 1.135;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}
h2 {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 18px;
  margin-top: 8px;
  line-height: 1.22;
}
h3 {
  font-weight: 500;
  font-size: 1.375rem;
  margin-bottom: 12px;
  margin-top: 16px;
}
p, ul, ol, li {
  color: var(--nature-dark);
  font-size: 1rem;
}
p {
  margin-bottom: 18px;
}
.text-section {
  margin-bottom: 16px;
  color: var(--nature-dark);
}

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

/* ==================
   HEADER & NAVIGATION
   ================== */
header {
  background: var(--nature-ivory);
  border-bottom: 2px solid #E8ECDF;
  box-shadow: var(--shadow);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  position: relative;
  gap: 24px;
}
header img {
  max-height: 48px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--nature-green);
  background: none;
  padding: 6px 2px;
  border-radius: 6px;
  transition: background 0.20s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.btn-primary {
  background: var(--nature-green);
  color: #fff !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 2px 12px rgba(33,67,49,.14);
  transition: background 0.22s, box-shadow 0.20s, transform 0.15s;
  margin-left: 8px;
  outline: none;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary) !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px rgba(33,67,49,.20);
}

/* ===========
  MOBILE NAV
============ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--nature-green);
  cursor: pointer;
  padding: 8px 10px;
  margin-left: 12px;
  z-index: 1101;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--nature-ivory);
  box-shadow: 0 18px 44px rgba(33,67,49,.18);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.68,-0.27,.25,1.35);
  width: 100vw;
  min-height: 100vh;
  padding: 36px 28px 28px 24px;
  opacity: 0.96;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.3rem;
  background: none;
  border: none;
  color: var(--nature-green);
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 32px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--nature-green);
  padding: 12px 16px;
  border-radius: 22px;
  background: none;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
@media (max-width: 990px) {
  header nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* =================
   MAIN SECTIONS, FLEX LAYOUTS
   ================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  width: 100%;
  border-radius: 28px;
}
.features, .card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.content-grid {
  gap: 20px;
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 290px;
  min-width: 260px;
  background: var(--nature-ivory);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 32px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.23s, transform 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 32px rgba(52,76,57,0.19);
  transform: translateY(-4px) scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-left: 6px solid var(--nature-green);
  border-radius: 15px;
  box-shadow: 0 2px 16px rgba(52,62,44,0.13);
  color: var(--nature-dark);
  font-size: 1.13rem;
}
.testimonial-card p {
  margin-bottom: 0;
  color: var(--nature-dark); /* Ensure contrast! */
  flex: 1 1 auto;
}
.testimonial-card div {
  margin-left: 8px;
  color: var(--nature-earth);
  font-size: 1rem;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    font-size: 1rem;
    padding: 18px 12px;
  }
}

.quick-info {
  background: var(--brand-accent);
  color: var(--brand-primary);
  padding: 16px 18px;
  border-radius: 12px;
  margin-top: 18px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

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

/* Order lists styling */
ol {
  font-size: 1rem;
  margin-bottom: 18px;
}

/* =====================
    FOOTER
===================== */
footer {
  background: var(--nature-ivory);
  border-top: 2px solid #E8ECDF;
  padding: 32px 0 16px 0;
  width: 100%;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer nav a {
  font-size: 1rem;
  color: var(--nature-green);
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--brand-secondary);
}
footer .text-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--nature-dark);
  font-size: 1rem;
  justify-content: flex-end;
  align-items: flex-end;
}
footer img {
  max-height: 42px;
  margin-bottom: 8px;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  footer .text-section {
    align-items: flex-start;
    font-size: 0.97rem;
  }
}

/* =====================
   BUTTONS & LINKS
===================== */
button, .btn-primary, .mobile-menu-close, .mobile-menu-toggle, .cookie-btn {
  outline: none;
}
button:focus-visible, .btn-primary:focus-visible, .cookie-btn:focus-visible {
  box-shadow: 0 0 0 3px var(--brand-secondary);
}

/* =====================
   COOKIE CONSENT BANNER
===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 0 24px rgba(60,60,32,.12);
  border-top: 3px solid var(--nature-clay);
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 1500;
  gap: 26px;
  font-size: 1rem;
  min-height: 74px;
  animation: slideUpBanner 0.7s cubic-bezier(.4,0,.2,1) 1;
}
@keyframes slideUpBanner {
  from { transform: translateY(90%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  flex: 1 1 240px;
  color: var(--nature-dark);
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-shrink: 0;
}
.cookie-btn, .cookie-btn-primary, .cookie-btn-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 22px;
  border: none;
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s;
}
.cookie-btn-primary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  font-weight: 700;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: var(--nature-clay);
  color: #fff;
}
.cookie-btn-secondary {
  background: transparent;
  color: var(--nature-green);
  border: 2px solid var(--nature-green);
  font-weight: 700;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: var(--nature-earth);
  color: #fff;
  border-color: var(--nature-earth);
}
.cookie-btn {
  background: transparent;
  color: var(--nature-dark);
  border: 2px solid var(--brand-secondary);
  font-weight: 500;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(47,63,54,.23);
  z-index: 1800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  animation: fadeInModalBg .5s cubic-bezier(.5,.01,.2,1);
}
@keyframes fadeInModalBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  padding: 38px 28px 28px 28px;
  border-radius: 26px;
  max-width: 410px;
  width: 96vw;
  box-shadow: 0 6px 36px rgba(92,108,67,0.21);
  color: var(--nature-dark);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1811;
  animation: slideModalIn .44s cubic-bezier(.35,1.2,.45,1);
}
@keyframes slideModalIn {
  from { transform: translateY(20px) scale(.93); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--nature-green);
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  color: var(--nature-dark);
  font-size: 1rem;
  cursor: pointer;
}
.cookie-modal-toggle {
  width: 38px;
  height: 22px;
  background: #eee;
  border-radius: 12px;
  border: none;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  outline: none;
}
.cookie-modal-toggle.on {
  background: var(--nature-green);
}
.cookie-modal-toggle::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(51,66,61,0.17);
  transition: transform 0.17s;
}
.cookie-modal-toggle.on::before {
  transform: translateX(16px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--brand-secondary);
  cursor: pointer;
}

/* ========================
   RESPONSIVE & MOBILE LAYOUT
======================== */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  section {
    padding: 28px 6px;
    margin-bottom: 36px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 1rem; }
  section {
    padding: 18px 3vw;
    margin-bottom: 26px;
    border-radius: 16px;
  }
  .card {
    min-width: 95vw;
    padding: 18px 10px;
    border-radius: 9px;
  }
}

/* Spacing for lists and content */
.content-wrapper > ul,
.content-wrapper > ol {
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* ===============
  ORGANIC SHAPES & NATURAL TEXTURES (SUBTLE)
=============== */
section {
  /* Subtle organic pattern for some depth */
  background-image: radial-gradient(ellipse 120% 60% at 87% 27%, #E2EDDE33 1%, transparent 80%),
    radial-gradient(ellipse 240% 120% at 10% 75%, #d8e4db22 0%, transparent 70%);
}

.card, .testimonial-card, .footer, .quick-info, .cookie-modal {
  /* Organic corner radius */
  border-radius: 20px 32px 18px 28px / 16px 22px 21px 14px;
}


/* ==============
  FORMS
============== */
input, textarea, select {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1.5px solid #CEDFC7;
  background: #fff;
  margin-bottom: 18px;
  outline: none;
  transition: border 0.2s;
  width: 100%;
  max-width: 420px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--nature-green);
}
label {
  font-size: 1rem;
  color: var(--nature-dark);
  margin-bottom: 6px;
  display: block;
}

/* Error / success for forms */
.form-error {
  color: #B03A2E;
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.form-success {
  color: var(--nature-green);
  font-size: 1.01rem;
  margin-bottom: 12px;
}

/* ==============
  MISC - SCROLLBAR
============== */
::-webkit-scrollbar {
  width: 10px;
  background: var(--nature-ivory);
}
::-webkit-scrollbar-thumb {
  background: #C6DEBF;
  border-radius: 8px;
}

/* =============
  ACCESSIBILITY
============ */
:focus-visible {
  outline: 3px solid var(--brand-secondary);
  outline-offset: 1px;
}


/* ===========
  MICRO-INTERACTIONS
=========== */
.card, .testimonial-card, .btn-primary {
  transition: box-shadow 0.21s, color 0.15s, transform 0.16s, background 0.19s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 32px rgba(92,116,67,0.13);
  background: #F0F3EE;
}

/* ===========
  PRINT
=========== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none;
  }
}
