/* ================== CSS RESET & BASE ================== */
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 {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #FAF9F6;
  color: #2F2F2F;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: #FAF9F6;
  color: #294024;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style-position: inside;
}
a {
  color: #A6C036;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7d9226;
}

/* ================== ROOT VARIABLES for fallback ================== */
:root {
  --primary: #16334A;
  --secondary: #A6C036;
  --accent: #F4F4F4;
  --earth-brown: #8B7355;
  --earth-green-mid: #65813E;
  --earth-green-light: #E6F0D9;
  --offwhite: #FAF9F6;
  --danger: #c34040;
  --success: #56723c;
}

/* ================== TYPOGRAPHY ================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #16334A;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.25;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  line-height: 1.25;
}
h4, h5, h6 {
  font-size: 1.13rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #294024;
  margin-bottom: 16px;
  line-height: 1.6;
}
ul {
  margin-left: 22px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}

/* ================== CONTAINERS & SECTIONS ================== */
.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  max-width: 740px;
  margin: 0 auto;
  background: var(--accent);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 2px 10px rgba(60,48,29,0.04);
}

.map-snippet {
  display: flex;
  align-items: center;
  background: var(--earth-green-light);
  color: var(--primary);
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 12px;
  font-size: 1rem;
  gap: 10px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}


/* ================== FLEX LAYOUTS ================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F9F7F1;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(22, 51, 74, 0.05);
  border: 1.5px solid #e5e2dc;
  padding: 26px 22px;
  flex: 1 1 235px;
  min-width: 220px;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 4px 20px rgba(166, 192, 54, 0.13);
  border-color: var(--secondary);
  transform: translateY(-2px) scale(1.02);
}

/* Feature grid for responsive columns with flex */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > .feature-item {
  min-width: 240px;
  max-width: 350px;
  flex: 1 1 235px;
}

.partner-logos img {
  height: 38px;
  width: auto;
}

/* ================== BUTTONS ================== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  border-radius: 28px;
  padding: 12px 28px;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.24s, color 0.16s, box-shadow 0.22s;
  margin-top: 18px;
  min-width: 148px;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(22, 51, 74, 0.085);
}
.btn-primary {
  background: var(--secondary);
  color: #16334A;
}
.btn-primary:hover, .btn-primary:focus {
  background: #7D9226;
  color: #fff;
  box-shadow: 0 2px 12px rgba(166, 192, 54, 0.15);
}
.btn-secondary {
  background: #FFFFFF;
  color: #294024;
  border: 2px solid var(--secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--earth-green-mid);
  color: #fff;
  border-color: var(--earth-green-mid);
}


/* ================== HEADER & NAVIGATION ================== */
header {
  width: 100%;
  background: linear-gradient(90deg, #FAF9F6, #F4F4F4 80%, #E6F0D9);
  box-shadow: 0 1px 12px 0 rgba(22, 51, 74, 0.045);
  position: sticky;
  top: 0;
  z-index: 90;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 32px;
}
.logo img {
  height: 42px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #16334A;
  padding: 9px 12px;
  border-radius: 20px;
  font-size: 1.04rem;
  transition: background .18s, color .16s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--earth-green-light);
  color: var(--secondary);
}
.main-nav .btn-primary {
  margin: 0 0 0 8px;
}

.mobile-menu-toggle {
  display: none;
  padding: 9px 15px;
  font-size: 2rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 18px;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--earth-green-light);
  color: var(--secondary);
}

/* Mobile nav */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(35, 43, 27, 0.38);
  z-index: 1300;
  transform: translateX(100%);
  transition: transform 0.29s cubic-bezier(.61,.07,.26,.96);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu nav.mobile-nav {
  background: #F4F4F4;
  min-width: 290px;
  box-shadow: -2px 0 18px rgba(22,51,74,0.13);
  padding: 65px 26px 48px 26px;
  border-radius: 18px 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100vh;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 34vw;
  z-index: 2;
  font-size: 2rem;
  background: #fff;
  border: none;
  color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(22,51,74,0.12);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .17s, color .14s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--earth-green-light);
  color: var(--secondary);
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.17rem;
  color: #16334A;
  text-align: left;
  padding: 13px 0 13px 0;
  border-radius: 18px;
  transition: background .15s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--earth-green-light);
  color: var(--secondary);
}
.mobile-nav a.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  font-size: 1.11rem;
  justify-content: center;
  margin-top: 10px;
  text-align: center;
}
.mobile-nav a.btn-primary:hover,
.mobile-nav a.btn-primary:focus {
  background: var(--earth-green-mid);
  color: #fff;
}

/* Hide hamburger and mobile-menu on desktop */
@media (min-width: 1025px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ================== FOOTER ================== */
footer {
  background: linear-gradient(90deg, #F4F4F4 75%, #E6F0D9);
  border-top: 1px solid #e2e0d0;
  margin-top: 60px;
  font-size: .97rem;
}
footer .container.content-wrapper {
  display: flex;
  padding: 40px 18px 18px 18px;
  gap: 38px;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  font-size: 1.21rem;
  color: var(--primary);
}
.footer-brand img {
  height: 38px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #294024;
}
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  height: 19px;
  width: 19px;
}
.footer-bottom {
  text-align: center;
  color: #557141;
  background: #E6F0D9;
  font-size: 0.98rem;
  padding: 12px 0 13px 0;
}


/* ================== TESTIMONIALS ================== */
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(38, 48, 24, 0.10);
  margin-bottom: 20px;
  padding: 24px 32px;
  align-items: flex-start;
  gap: 20px;
  color: #16334A;
  font-size: 1.05rem;
  border-left: 7px solid var(--secondary);
  min-width: 210px;
  max-width: 580px;
  position: relative;
}
.testimonial-card p {
  margin-bottom: 8px;
  color: #294024;
}
.testimonial-card strong {
  color: #16334A;
}
.testimonial-card span:last-child {
  color: var(--secondary);
  font-size: 1.18em;
  letter-spacing: 2px;
}

/* ================== ORGANIC/NATURE ACCENTS ================== */
section {
  background: linear-gradient(111deg, #faf9f6 75%, #eaf5dc 100%);
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(150,170,120,0.04);
  margin-bottom: 60px;
  padding: 40px 20px;
}

section:nth-child(even) {
  background: linear-gradient(111deg, #f2ede4 66%, #e6f0d9 94%);
}

.feature-item {
  background: #F7F8F2;
  border-radius: 18px 38px 26px 14px / 24px 16px 36px 18px;
  /* organic shape */
}


/* ================== LISTS, TABLES, IMAGES ================== */
ul, ol {
  padding-left: 20px;
}
li {
  line-height: 1.6;
}

/* ================== RESPONSIVENESS ================== */
@media (max-width: 1024px) {
  .container, footer .container.content-wrapper { max-width: 94vw; }
  section, .section { padding: 30px 6vw; }
  .footer-brand img { height: 31px; }
  .footer-nav, .footer-contact { gap: 9px; }
}
@media (max-width: 900px) {
  .feature-grid, .content-grid {
    gap: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .content-wrapper {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  section, .section { padding: 26px 6vw; margin-bottom: 40px; }
  .content-wrapper, .container.content-wrapper, footer .container.content-wrapper { flex-direction: column; gap: 18px; }
  .footer-brand { font-size: 1.07rem; }
  .main-nav, .footer-nav { gap: 10px; }
  .feature-item { padding: 17px 12px; }
  .feature-grid, .content-grid { gap: 12px; }
  .testimonial-card { padding: 13px 10px; }
  .partner-logos { gap: 8px; }
}
@media (max-width: 600px) {
  .container { padding: 0 7px; }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.2rem; }
  .logo img { height: 33px; }
  .footer-brand img { height: 24px; }
  .footer-nav a { font-size: 0.98rem; }
  footer .container.content-wrapper { padding: 18px 7px 12px 7px; }
  .footer-contact > div { font-size: 0.97rem; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
}

/* ================== COOKIE CONSENT BANNER ================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2140;
  background: #f7f8f2;
  border-top: 3px solid var(--earth-green-mid);
  box-shadow: 0 -4px 20px rgba(46, 64, 33, 0.14);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 14px 18px 14px;
  gap: 34px;
  transition: transform 0.28s cubic-bezier(.55,-0.07,.34,1.11), opacity .21s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
}
.cookie-banner .cookie-message {
  font-size: 1.08rem;
  color: #16334A;
  margin-bottom: 8px;
  max-width: 520px;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 0;
}
.cookie-banner button {
  padding: 9px 23px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  border-radius: 24px;
  outline: none;
  border: none;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.16s, color 0.17s;
}
.cookie-banner .cookie-accept {
  background: var(--secondary);
  color: #16334A;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: var(--earth-green-mid);
  color: #fff;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: var(--danger);
  border: 1.3px solid var(--danger);
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: var(--danger);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: var(--accent);
  color: var(--primary);
  border: 1.3px solid var(--primary);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--primary);
  color: #fff;
}

/* ---------- Cookie Modal Overlay ---------- */
.cookie-modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2150;
  background: rgba(22, 51, 74, 0.22);
}
.cookie-modal.open {
  display: flex;
  animation: fadeInCookieModal 0.32s;
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #F7F8F2;
  padding: 36px 28px 24px 28px;
  border-radius: 32px;
  min-width: 335px;
  max-width: 96vw;
  box-shadow: 0 8px 30px rgba(46, 64, 33, 0.14);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.32rem;
  color: #16334A;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  color: #294024;
}
.cookie-category input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
}
.cookie-category .mandatory {
  font-size: 0.97rem;
  color: #7d9226;
  margin-left: 6px;
}
.cookie-modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 17px;
}
.cookie-modal-close {
  position: absolute;
  top: 19px; right: 19px;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  color: var(--primary);
  cursor: pointer;
  border-radius: 50%;
  transition: background .13s, color .11s;
  width: 39px; height: 39px;
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--earth-green-light);
  color: var(--secondary);
}
@media (max-width: 600px) {
  .cookie-modal-content {
    min-width: 95vw;
    padding: 18px 6vw 14px 6vw;
    border-radius: 17px;
  }
}

/* ================== ANIMATIONS & MICRO-INTERACTIONS ================== */
.btn-primary, .btn-secondary, .feature-item, .mobile-nav a, .main-nav a, .mobile-menu-toggle, .mobile-menu-close, .testimonial-card {
  transition: background 0.18s, color 0.18s, box-shadow 0.22s, border-color 0.18s, transform 0.16s;
}

.feature-item img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  margin-bottom: 3px;
  filter: drop-shadow(0 1px 2px rgba(22,51,74,0.05));
}

/* subtle movement on section load */
section,.content-wrapper,.feature-item,.testimonial-card,.btn-primary,.btn-secondary {
  will-change: transform, opacity;
}

/* ================== FORMS (if any) ================== */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 14px;
  border: 1.5px solid #cfdcc7;
  padding: 11px 12px;
  outline: none;
  transition: border-color 0.17s, box-shadow 0.15s;
  background: #F7F8F2;
  color: #294024;
  margin-bottom: 20px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  box-shadow: 0 1px 6px rgba(166, 192, 54, 0.11);
}

/* ================== MISCELLANEOUS ================== */
::-webkit-scrollbar {
  width: 9px;
  background: #e6f0d9;
}
::-webkit-scrollbar-thumb {
  background: #A6C036;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: #7d9226; }

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

/* ================== OVERRIDE DEFAULTS AND FINAL TWEAKS ================== */
*:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

hr {
  border: none;
  border-bottom: 1.5px solid #29402411;
  margin: 26px 0;
}

/* Make sure cards/spaces don't overlap on any width */
.card, .feature-item, .testimonial-card, .section, section, .card-container, .content-grid, .feature-grid { margin-bottom: 20px; }


/* ========== DARK TEXT ON LIGHT BG (for Testimonials/Reviews) ========== */
.testimonial-card, .testimonial-card p, .testimonial-card span, .testimonial-card strong {
  color: #16334A !important;
  background: #fff !important;
  font-size: 1.09rem;
}

/* Force min touch target */
button, .btn-primary, .btn-secondary, a.btn-primary, a.btn-secondary, .mobile-menu-toggle, .mobile-menu-close {
  min-height: 44px;
}

/* ================== END ================== */
