/* --- 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { display: block; }
body {
  line-height: 1.5;
  background: #fcfaf7;
  color: #234C63;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; border: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'), url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url('https://fonts.googleapis.com/css?family=Roboto:400&display=swap');
}

/* --- Brand Color Variables --- */
:root {
  --primary: #234C63;
  --secondary: #224B37;
  --accent: #EDEDED;
  --bg-neutral: #fcfaf7;
  --bg-card: #f4f4ef;
  --light-green: #E5F3E1;
  --deep-green: #224B37;
  --brown-earth: #7F674A;
  --soft-beige: #F2ECE5;
  --organic-green: #5BA16D;
  --error-red: #B03535;
  --shadow: 0 2px 12px rgba(34,75,55,0.07), 0 1.5px 8px rgba(125,105,76,0.06);
}

/* --- General Layout & Container --- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 890px;
  background: var(--bg-card);
  border-radius: 38px 44px 22px 36px/30px 34px 26px 32px;
  box-shadow: var(--shadow);
  padding: 42px 26px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  background: var(--soft-beige);
  box-shadow: var(--shadow);
  border-radius: 38px 44px 22px 36px/30px 34px 26px 32px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* --- Typography --- */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.1;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 18px;
  line-height: 1.15;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-green);
}
p {
  font-size: 1.13rem;
  color: var(--primary);
  line-height: 1.68;
  margin-bottom: 14px;
}
ul, ol {
  margin-left: 0;
}
ul li,
ol li {
  line-height: 1.68;
  font-size: 1rem;
  color: var(--deep-green);
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--organic-green);
  position: absolute; left: 0; top: 8px;
}
strong, b { font-weight: 700; }
a { transition: color 0.18s cubic-bezier(.45,.2,.1,1); }

/* --- Buttons & CTA --- */
.cta {
  display: inline-flex;
  align-items: center;
  background: var(--organic-green);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.5px;
  padding: 14px 38px;
  border-radius: 30px 38px 22px 32px/28px 34px 26px 22px;
  box-shadow: 0 4px 14px rgba(91,161,109,0.08);
  margin-top: 16px;
  margin-bottom: 0;
  text-transform: none;
  font-weight: 700;
  border: none;
  transition: background 0.18s, box-shadow .2s cubic-bezier(.45,.2,.1,1);
  cursor: pointer;
}
.cta:hover, .cta:focus {
  background: var(--deep-green);
  box-shadow: 0 8px 18px rgba(34,75,55,.13);
  color: #fff;
}
button.cta {outline: none;}

/* --- Header --- */
header {
  background-color: var(--bg-neutral);
  box-shadow: 0 2px 8px rgba(30,47,36,.04);
  padding: 0 0 6px 0;
  margin-bottom: 2px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding-top: 14px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
header nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 18px;
  letter-spacing: 0.1px;
  font-size: 1rem;
  transition: background .14s, color .15s;
}
header nav a:hover, header nav a:focus {
  background: var(--light-green);
  color: var(--deep-green);
}
header nav a.cta {
  margin-left: 22px;
}
header img {
  height: 46px;
  width: auto;
  border-radius: 10px 18px 9px 15px;
  background: transparent;
}

/* --- Footer --- */
footer {
  background: var(--accent);
  padding: 36px 0 24px 0;
  box-shadow: 0 -2px 12px rgba(30,47,36,.06);
  margin-top: 64px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  margin-bottom: 8px;
}
.footer-logo img {
  height: 44px;
  width: auto;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-bottom: 10px;
}
footer nav a {
  color: var(--deep-green);
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 16px;
  padding: 6px 10px;
  transition: background .14s;
}
footer nav a:hover,footer nav a:focus {
  background: var(--light-green);
}
footer address {
  font-style: normal;
  color: var(--secondary);
  font-size: 1.03rem;
  line-height: 1.62;
  text-align: center;
}

/* --- Cards, Features and Testimonials --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--bg-card);
  border-radius: 32px 28px 30px 25px/30px 36px 22px 32px;
  box-shadow: var(--shadow);
  padding: 34px 28px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 255px;
  flex: 1 1 255px;
  transition: transform .13s, box-shadow .15s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(34,75,55,.13);
  transform: translateY(-4px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 22px 0 8px 0;
}
.feature-grid > div {
  background: var(--light-green);
  border-radius: 32px 18px 26px 20px/26px 22px 30px 24px;
  padding: 28px 22px 24px 22px;
  flex: 1 1 252px;
  box-shadow: 0 2px 8px #7f674a13;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 210px;
  transition: box-shadow .14s, transform .13s;
}
.feature-grid > div h3 {
  margin: 0 0 4px 0;
}
.feature-grid > div img {
  width: 44px;
  height: 44px;
  margin-bottom: 2px;
  border-radius: 12px 17px 6px 18px;
  background: #E7F0EA;
}
.feature-grid > div:hover {
  box-shadow: 0 9px 28px #7f674a28;
  transform: translateY(-2px) scale(1.02);
}

/* Testimonials */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: var(--primary);
  border-radius: 30px 26px 32px 22px/20px 36px 20px 32px;
  box-shadow: var(--shadow);
  padding: 20px 28px;
  margin-bottom: 20px;
  min-width: 0;
  max-width: 670px;
  font-size: 1.09rem;
}
.testimonial-card blockquote {
  font-style: italic;
  line-height: 1.56;
  color: var(--deep-green);
  font-size: 1.10rem;
  quotes: '\201E' '\201D';
}
.testimonial-card blockquote:before { content: '\201E'; color: var(--organic-green); font-size: 2.0rem; margin-right: 2px; vertical-align: -0.3em; }
.testimonial-card strong {
  color: var(--primary); font-size: 1em;
}

/* --- Tables --- */
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: var(--soft-beige);
  border-radius: 22px;
  box-shadow: 0 2px 8px #7f674a13;
  margin: 18px 0 22px 0;
  overflow: hidden;
}
thead tr { background: var(--organic-green); color: #fff; }
th, td {
  padding: 14px 14px;
  text-align: left;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--deep-green);
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--organic-green);
  color: #fff;
  font-weight: 700;
  font-size: 1.01rem;
}
tbody tr:nth-child(even) { background: #ebf3ee; }
tbody tr:hover { background: var(--light-green); }
td {
  font-size: 1.03rem;
}

/* --- Content Grids --- */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 180px;
  margin-bottom: 20px;
}

/* --- Misc Classes --- */
.map-placeholder {
  margin: 18px 0 0 0;
  background: #e5eee8;
  border-radius: 22px 44px 32px 18px;
  box-shadow: 0 2px 8px #224b3736;
  padding: 28px 18px;
  color: var(--secondary);
  font-size: 1.04rem;
}

/* --- Responsive Spacing & Sizing --- */
@media (max-width: 980px) {
  .container { max-width: 96vw; }
  .content-wrapper, .text-section { max-width: 98vw; padding: 32px 10px; }
}
@media (max-width: 820px) {
  .feature-grid { gap: 18px; }
  .feature-grid > div { min-width: 160px; }
}
@media (max-width: 768px) {
  .container { max-width: 99vw; }
  .content-wrapper, .text-section { padding: 26px 6px; }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    padding-top: 8px; padding-bottom: 8px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 520px) {
  h1 {font-size: 1.7rem;}
  h2 {font-size: 1.26rem;}
  h3 {font-size: 1.07rem;}
  .content-wrapper, .text-section {
    border-radius: 16px;
    padding: 12px 3.5vw;
    box-shadow: 0 2px 9px #234c630e;
  }
  header img, .footer-logo img { height: 38px; }
  .card, .feature-grid > div, .testimonial-card, .map-placeholder {
    border-radius: 13px;
    padding: 14px 8px;
  }
  table {font-size: 0.98rem;}
}

/* --- Mobile Navigation --- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--organic-green);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  border: none;
  margin-left: 14px;
  cursor: pointer;
  transition: background .14s, box-shadow .2s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--deep-green);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,75,55,0.93);
  transform: translateX(-110vw);
  z-index: 1050;
  transition: transform .29s cubic-bezier(.4,.2,.3,1);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  padding: 0 0 0 0;
  will-change: transform;
}
.mobile-menu.active {
  transform: translateX(0);
  box-shadow: 0 2px 20px #224b374d;
}
.mobile-menu-close {
  background: var(--organic-green);
  color: #fff;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 48px; height: 48px;
  border: none;
  margin: 22px 12px 12px 24px;
  align-self: flex-start;
  transition: background .16s, box-shadow .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--deep-green);
}
.mobile-nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100vw;
  align-items: start;
  padding-left: 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  font-weight: 600;
  padding: 12px 0 8px 0;
  border-radius: 8px;
  width: max-content;
  transition: color .13s, background .13s;
}
.mobile-nav a.cta {
  background: var(--organic-green);
  padding: 10px 26px;
  color: #fff;
  border-radius: 22px 30px 10px 19px/14px 23px 14px 13px;
  margin-top: 8px;
  font-size: 1.18rem;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: rgba(255,255,255,0.07);
}
header nav, .mobile-menu-toggle { display: none; }
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  header nav { display: flex !important; }
}
@media (max-width: 768px) {
  header nav { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
  .mobile-menu { display: flex !important; }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbea;
  color: var(--primary);
  border-top: 3px solid var(--organic-green);
  box-shadow: 0 -2px 22px #224b3729;
  padding: 26px 16px 18px 16px;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: center;
  transition: transform .3s cubic-bezier(.52,.1,.13,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner-text {
  font-size: 1.04rem;
  color: var(--secondary);
  max-width: 400px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.cookie-btn {
  padding: 11px 21px;
  margin-left: 0;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 22px;
  border: none;
  background: var(--organic-green);
  color: #fff;
  box-shadow: 0 1px 5px #224b3726;
  transition: background .15s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--deep-green);
}
.cookie-btn.reject {
  background: #e2d6cd;
  color: var(--brown-earth);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #dbbeae;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--organic-green);
  border: 1.5px solid var(--organic-green);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--light-green);
}

/* --- Cookie Preferences Modal --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30,47,36,0.3);
  z-index: 2050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .24s;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 5px 40px #224b3738;
  max-width: 95vw; min-width: 275px; width: 440px;
  padding: 38px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal h2 {
  font-size: 1.22rem;
  color: var(--deep-green);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 10px 0 8px 0;
  border-bottom: 1px solid #e9e9e2;
  font-size: 1.04rem;
  color: var(--primary);
}
.cookie-modal .category-desc {
  font-size: 0.97rem;
  color: var(--secondary);
  margin-left: 4px;
}
.cookie-category input[type=checkbox] {
  width: 22px; height: 22px;
  accent-color: var(--organic-green);
  margin-left: 8px;
}
.cookie-category input[type=checkbox][disabled] {
  opacity: 0.65;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 10px;
  justify-content: flex-end;
}

/* --- Animations & Transitions --- */
.mobile-menu, .cookie-banner, .cookie-modal-overlay {
  will-change: transform, opacity;
}

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

/* --- Accessibility --- */
:focus {
  outline: 2px solid var(--organic-green);
  outline-offset: 2px;
}

/* --- Ensure Z-index Stacking for UI --- */
header { z-index: 4; position: relative; }
footer { z-index: 2; position: relative; }

/* --- End of CSS --- */
