/* =========================
   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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  background: #F4F2EF;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F4F2EF;
  color: #1C2938;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
a {
  color: #1C2938;
  text-decoration: none;
  transition: color .2s;
}
a:focus, a:hover {
  color: #457D5A;
  outline: none;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 600;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.text-section {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #20331D;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.16;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.25;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
p {
  margin-bottom: 16px;
  color: #363f31;
  font-size: 1.05rem;
  font-weight: 400;
}

@media (max-width: 500px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(80,96,60,0.07);
  border-bottom: 1.5px solid #dce8de;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
header a img {
  height: 36px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 7px 13px;
  border-radius: 6px;
  color: #20331D;
  font-weight: 500;
  transition: background 0.18s;
}
header nav a:hover {
  background: #E3E8DC;
  color: #436F41;
}
header .btn-primary {
  margin-left: 18px;
}
.mobile-menu-toggle {
  background: #E3E8DC;
  border: none;
  color: #2B5032;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #C4DABE;
}

/* Responsive Header Navigation */
@media (max-width: 990px) {
  header nav { display: none; }
  header .btn-primary { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* =========================
   MOBILE MENU OVERLAY
   ========================= */
.mobile-menu {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,58,41, 0.93);
  backdrop-filter: blur(2px);
  transform: translateX(-110vw);
  transition: transform 0.32s cubic-bezier(.61,.19,.23,.99);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #D59F6A;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin: 28px 0 0 26px;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 2px 6px rgba(98,76,41, 0.09);
  transition: background .22s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #B18450;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 44px 0 0 36px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -.5px;
  padding: 13px 0 7px 0;
  border-bottom: 2.5px solid transparent;
  transition: border-bottom .22s, color .19s;
  width: 100%;
  display: flex;
  border-radius: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  border-bottom: 2.5px solid #7DBB73;
  color: #B5E791;
  outline: none;
}

@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =========================
   BUTTONS
   ========================= */
.btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  padding: 12px 28px;
  border-radius: 22px;
  border: none;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
  margin: 8px 0 0 0;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(85,90,80,0.09);
  transition: background .22s, color .22s, box-shadow .21s;
  text-align: center;
  text-decoration: none;
}
.btn-primary {
  background: #457D5A;
  color: #fff;
  border: 2.3px solid #457D5A;
}
.btn-primary:focus,
.btn-primary:hover {
  background: #295135;
  border-color: #295135;
}
.btn-secondary {
  background: #E3E8DC;
  color: #365428;
  border: 2.2px solid #C4DABE;
}
.btn-secondary:focus,
.btn-secondary:hover {
  background: #C4DABE;
  color: #295135;
  border-color: #B5CCA2;
}

/* =========================
   FEATURE GRID & CARDS
   ========================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 20px 0;
}
.feature-grid > div {
  background: #F9F8F7;
  border-radius: 18px;
  padding: 28px 20px 22px 20px;
  flex: 1 1 220px;
  box-shadow: 0 3px 12px rgba(116,138,119,.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  max-width: 315px;
  border: 1.5px solid #DBEBD3;
  transition: box-shadow .19s, transform .21s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 30px rgba(53,71,43, 0.10);
  transform: translateY(-4px) scale(1.03);
}
.feature-grid img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: #E3E8DC;
  padding: 7px;
}
.feature-grid h3 {
  color: #2B5032;
  font-size: 1.18rem;
  margin: 0 0 4px 0;
  font-weight: 600;
}
.feature-grid p {
  font-size: 1rem;
  color: #386140;
}

/* Cards, Miscellaneous container patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 5px 18px rgba(49,61,47,.06);
  border: 1.5px solid #EAE9E3;
  transition: box-shadow .18s, transform .21s;
}
.card:hover {
  box-shadow: 0 12px 44px rgba(68,90,58,0.10);
  transform: translateY(-4px) scale(1.02);
}
.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: #EBF5EC;
  border-radius: 19px;
  box-shadow: 0 3px 16px rgba(33,59,25,0.08);
  border: 1.6px solid #DCEDDE;
  margin-bottom: 22px;
  max-width: 620px;
}
.testimonial-content p {
  font-size: 1.12rem;
  font-style: italic;
  color: #2B5032;
}
.testimonial-content span {
  display: block;
  font-size: .97rem;
  color: #44685B;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: .01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 26px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 8px; padding-right: 8px;
  }
  .content-wrapper { gap: 16px; }
  .section { padding: 32px 7px; margin-bottom: 38px; }
  .card, .testimonial-card {
    padding-left: 13px !important;
    padding-right: 13px !important;
  }
  .feature-grid {
    flex-direction: column;
    gap: 22px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 520px) {
  .testimonial-card { padding: 13px; }
  .section { padding: 21px 3vw; }
}

/* =========================
   FAQ CATEGORY
   =========================*/
.faq-category {
  margin-bottom: 42px;
  background: #F9F8F7;
  border-radius: 14px;
  padding: 23px 18px;
  box-shadow: 0 2px 8px rgba(90,96,80,0.03);
  border-left: 4px solid #C4DABE;
}
.faq-category h2 {
  color: #457D5A;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.faq-category ul {
  padding-left: 2em;
}
.faq-category li {
  margin-bottom: 12px;
}

/* =========================
   CTA & ABOUT SECTION
   ========================= */
.cta-section {
  background: #E3E8DC;
  border-radius: 19px;
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0 1px 7px rgba(98,160,125,.07);
}

/* =========================
   MAP PLACEHOLDER
   ========================= */
.map-placeholder {
  background: #D4E6D2 !important;
  color: #2B5032;
  font-weight: 600;
  border-radius: 14px;
  font-size: 1.07rem;
  letter-spacing: 0.02em;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: #20331D;
  color: #F4F2EF;
  padding: 52px 0 32px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
}
footer img {
  height: 38px;
  margin-right: 32px;
  filter: grayscale(15%);
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-right: 34px;
}
footer nav a {
  color: #E3E8DC;
  font-size: .96rem;
  margin-bottom: 8px;
  letter-spacing: .01em;
  transition: color .14s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
footer nav a:focus,
footer nav a:hover {
  color: #D59F6A;
}
footer .contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .98rem;
  color: #C3EAC3;
}
footer .contact-details img {
  height: 18px;
  margin-right: 7px;
  filter: grayscale(50%);
}
footer .contact-details p {
  color: inherit;
  margin-bottom: 4px;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }
  footer nav {
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  footer {
    padding: 34px 0 16px 0;
  }
  footer nav {
    gap:4px;
  }
}

/* =========================
   COOKIE CONSENT BANNER & MODAL
   ========================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1C2938;
  color: #fff;
  padding: 19px 18px;
  box-shadow: 0 -2px 12px rgba(44,58,41,.16);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  z-index: 2100;
  align-items: center;
  justify-content: center;
  font-size: 1.03rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: fadeInCookieBanner .6s ease-in;
}
@keyframes fadeInCookieBanner {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: .97rem;
  font-weight: 600;
  margin: 0 7px 0 0;
  border: 0;
  border-radius: 20px;
  cursor: pointer;
  padding: 10px 22px;
  transition: background .17s, color .17s;
}
.cookie-accept {
  background: #7DBB73;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #457D5A;
}
.cookie-reject {
  background: #fff;
  color: #7DBB73;
  border: 1.3px solid #7DBB73;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #E3E8DC;
  color: #3F6F36;
}
.cookie-settings-btn {
  background: #D59F6A;
  color: #fff;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #B18450;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 3500;
  background: rgba(33,46,40, .83);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInCookieModal .34s ease-in;
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #F4F2EF;
  border-radius: 22px;
  padding: 38px 28px 29px 28px;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 10px 56px rgba(60,87,44,0.27);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  font-size: 1.28rem;
  color: #2B5032;
  margin-bottom: 11px;
}
.cookie-modal label {
  font-size: 1.02rem;
  color: #23342A;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.cookie-modal input[type=checkbox] {
  accent-color: #7DBB73;
  width: 17px;
  height: 17px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 11px;
}
.cookie-modal .cookie-modal-close {
  background: #B18450;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 7px 16px;
  font-size: .99rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  margin-left: auto;
}
.cookie-modal .cookie-modal-close:hover, 
.cookie-modal .cookie-modal-close:focus {
  background: #7F5A31;
}

@media (max-width: 500px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 14px 7px 17px 7px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    padding: 18px 7px 15px 7px;
  }
}

/* =========================
   FORMS (if needed in future)
   ========================= */
input, textarea, select {
  font-family: inherit;
  border: 1.7px solid #C4DABE;
  border-radius: 9px;
  padding: 10px 14px;
  box-shadow: none;
  background: #fff;
  font-size: 1rem;
  color: #1C2938;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: #7DBB73;
  outline: none;
  box-shadow: 0 0 1px #7DBB73;
}

/* =========================
   Miscellaneous
   ========================= */
ul ul {
  margin-bottom: 0;
}
::-webkit-scrollbar {
  width: 10px;
  background: #E3E8DC;
}
::-webkit-scrollbar-thumb {
  background: #C4DABE;
  border-radius: 10px;
}

/* Organic Touches */
.section, .card, .feature-grid > div, .testimonial-card, .faq-category, .cta-section, .cookie-modal {
  border-radius: 19px 18px 21px 17px/23px 18px 14px 19px; /* organic border radius */
}

/* Animate In */
@keyframes fadeInSoft {
  from { opacity:.33; transform: translateY(16px); }
  to { opacity:1; transform: none; }
}
.section, .card, .feature-grid > div, .testimonial-card {
  animation: fadeInSoft .8s cubic-bezier(.31,.49,.25,1.03)
}

/* ====== Visually Hidden (for accessibility) ====== */
.visually-hidden {
  position: absolute;
  left: -10000px;
  width: 1px; height: 1px; overflow: hidden;
}
