/* === 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 {box-sizing: border-box; height: 100%;}
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #fff;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 24px;
}
a {
  color: #355D3A;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus { color: #7BAE66; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #355D3A;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 { font-size: 2.25rem; line-height: 1.2; }
h2 { font-size: 1.65rem; line-height: 1.24; }
h3 { font-size: 1.2rem; line-height: 1.28; }
h4 { font-size: 1rem; }
p, li { color: #222; line-height: 1.6; font-size: 1rem; margin-bottom: 14px; }
strong { color: #355D3A; }

/* === UTILITY & LAYOUT === */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(53,93,58,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 26px 10px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 10px;
  }
}

/* === FLEXBOX GRIDS === */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(53,93,58,0.08);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 16px 0 rgba(53,93,58,0.13);
}
.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, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 22px 16px;
  background: #F1ECE6;
  border-radius: 10px;
  box-shadow: 0 1px 8px 0 rgba(53,93,58,0.06);
  min-width: 240px;
  flex: 1 1 240px;
  max-width: 320px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  width: 38px; height: 38px;
  margin-bottom: 10px;
}
.feature-item:hover {
  box-shadow: 0 4px 16px 0 rgba(53,93,58,0.13);
  transform: translateY(-2px);
}
@media (max-width: 990px) {
  .feature-grid { flex-direction: column; gap: 18px; }
  .feature-item { max-width: 100%; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(53,93,58,0.08);
  margin-bottom: 20px;
  border-left: 4px solid #7BAE66;
}
.testimonial-card p {
  font-size: 1.03rem;
  color: #2E2E2E;
  margin: 0 0 6px 0;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #355D3A;
}

/* === HEADER & NAV === */
header {
  background: #fff;
  border-bottom: 1px solid #E1E1E1;
  box-shadow: 0 2px 12px 0 rgba(53,93,58,0.04);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #355D3A;
  padding: 6px 2px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F1ECE6;
  color: #7BAE66;
}
.btn-primary {
  background: #355D3A;
  color: #fff !important;
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px 0 rgba(53,93,58,0.08);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #7BAE66;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(123,174,102,0.13);
}

/* Mobile Nav */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 1px solid #E1E1E1;
  font-size: 2rem;
  color: #355D3A;
  border-radius: 7px;
  padding: 4px 14px;
  margin-left: 18px;
  cursor: pointer;
  transition: background .18s, border .18s;
  z-index: 1023;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F1ECE6;
  border-color: #7BAE66;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(53,93,58,0.97);
  color: #fff;
  z-index: 1040;
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.77,0,.175,1), opacity .2s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  margin: 24px 0 24px 18px;
  cursor: pointer;
  align-self: flex-start;
  padding: 0 8px;
  z-index: 1041;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100vw;
  padding: 0 0 0 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  padding: 10px 0;
  display: inline-block;
  border-radius: 8px;
  transition: background .16s, color .19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7BAE66;
  color: #355D3A;
}
@media (max-width: 1100px) {
  .main-nav { gap: 18px; }
}
@media (max-width: 980px) {
  .main-nav a:not(.btn-primary) { font-size: 0.98rem; }
  .main-nav { gap: 14px; }
}
@media (max-width: 900px) {
  .main-nav a.btn-primary { padding: 9px 18px; font-size: 0.94rem; }
  .logo img { height: 40px; }
}
@media (max-width: 870px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* === FOOTER === */
footer {
  background: #fff;
  border-top: 1px solid #E1E1E1;
  box-shadow: 0 -2px 12px 0 rgba(53,93,58,0.04);
  padding: 30px 0 16px 0;
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 44px; width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px; }
.footer-nav a {
  color: #355D3A;
  opacity: 0.90;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #7BAE66;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #222;
}
.footer-contact img {
  height: 18px; width: 18px;
  vertical-align: middle;
  margin-right: 7px;
}
.social-icons {
  display: flex;
  gap: 16px;
}
.social-icons img {
  height: 32px; width: 32px;
  display: block;
  border-radius: 6px;
  transition: box-shadow .15s;
}
.social-icons img:hover {
  box-shadow: 0 2px 8px 0 rgba(53,93,58,0.18);
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* === MAP PLACEHOLDER === */
.map-placeholder {
  width: 100%;
  min-height: 180px;
  background: #F1ECE6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #7BAE66;
  font-size: 1.1rem;
  margin: 18px 0 10px 0;
}

/* === FORMS (future-proof, eg. contact forms) === */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #B6C9B6;
  border-radius: 8px;
  padding: 10px 14px;
  background: #FAFAFA;
  outline: none;
  margin-bottom: 16px;
  transition: border .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #7BAE66;
  box-shadow: 0 0 1px #7BAE66;
}
label { font-size: 1rem; color: #355D3A; margin-bottom: 8px; display: block; }

/* === TYPOGRAPHY & LISTS === */
ul, ol {
  margin-bottom: 18px;
  color: #222;
}
li {
  margin-bottom: 8px;
  line-height: 1.56;
  padding-left: 0;
}
ul li strong, ol li strong {
  color: #355D3A;
}

/* === SPACING FOR MAIN SECTIONS === */
main section, main .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  main section, main .section {
    margin-bottom: 34px;
    padding: 22px 8px;
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .btn-primary { padding: 9px 16px; font-size: 0.99rem; }
  .testimonial-card, .card, .feature-item {
    padding: 15px 8px;
    gap: 11px;
  }
}

/* === MICRO-INTERACTIONS === */
.btn-primary:active {
  background: #222;
  color: #fff;
}
.card:focus-within, .feature-item:focus-within {
  outline: 2px solid #7BAE66;
  outline-offset: 2px;
}

/* ================= COOKIE CONSENT BANNER ================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 1.5px solid #B6C9B6;
  box-shadow: 0 -2px 18px 0 rgba(53,93,58,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 18px 16px 14px 16px;
  gap: 14px;
  animation: cookieAppear .8s cubic-bezier(.77,0,.175,1);
}
@keyframes cookieAppear {from { opacity: 0; transform: translateY(40px); } to { opacity:1; transform: translateY(0); } }
.cookie-banner p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 0;
  text-align: center;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 3px;
  justify-content: center;
}
.cookie-banner button,
.cookie-banner .cookie-btn {
  background: #355D3A;
  color: #fff;
  border-radius: 19px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.99rem;
  font-weight: 600;
  padding: 8px 22px;
  box-shadow: 0 1px 6px 0 rgba(123,174,102,0.10);
  margin: 0;
  cursor: pointer;
  transition: background .14s, color .14s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus { background: #7BAE66; color: #fff; }
.cookie-banner .secondary {
  background: #7BAE66;
  color: #fff;
}
.cookie-banner .secondary:hover, .cookie-banner .secondary:focus {
  background: #355D3A;
}
.cookie-banner .outline {
  background: #F1ECE6;
  color: #355D3A;
  border: 1.3px solid #7BAE66;
}
.cookie-banner .outline:hover, .cookie-banner .outline:focus {
  background: #7BAE66;
  color: #fff;
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(53,93,58,0.82);
  z-index: 1120;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  max-width: 94vw;
  width: 370px;
  padding: 32px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 8px 32px 4px rgba(53,93,58,0.15);
  position: relative;
  gap: 18px;
  animation: modalAppear .29s cubic-bezier(.77,0,.175,1);
}
@keyframes modalAppear {from { opacity:0; transform: scale(.93);} to {opacity:1; transform: scale(1);}}
.cookie-modal h3 {
  font-size: 1.21rem;
  margin-bottom: 12px;
  color: #355D3A;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  padding: 7px 0;
  font-size: 0.98rem;
}
.cookie-modal .cookie-category label {
  margin: 0;
  font-size: 1rem;
  color: #355D3A;
}
.cookie-modal-toggle {
  appearance: none;
  width: 44px; height: 24px;
  background: #B6C9B6;
  border-radius: 18px;
  position: relative;
  outline: none;
  margin-left: 7px;
  cursor: pointer;
  transition: background .18s;
}
.cookie-modal-toggle:checked {
  background: #7BAE66;
}
.cookie-modal-toggle:before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 5px 0 rgba(53,93,58,0.10);
  transition: left .18s;
}
.cookie-modal-toggle:checked:before {
  left: 23px;
}
.cookie-modal .modal-btn-group {
  display: flex;
  gap: 11px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal .modal-close-btn {
  position: absolute;
  top: 10px; right: 16px;
  background: none;
  border: none;
  color: #355D3A;
  font-size: 1.55rem;
  cursor: pointer;
  opacity: 0.79;
  transition: opacity .15s;
}
.cookie-modal .modal-close-btn:hover {
  opacity: 1;
}

/* === ACCESSIBILITY, FOCUS STATES === */
a:focus, button:focus, .btn-primary:focus {
  outline: 2px solid #7BAE66;
  outline-offset: 2px;
}

/* === MISC FOR ICONS IN TEXT === */
li img {
  vertical-align: middle;
  margin-right: 7px;
  height: 19px; width: 19px;
}

/* === STYLE FOR TEXT OVER ACCENT BG === */
.bg-accent, .feature-grid .feature-item {
  background: #F1ECE6;
}

/* === NARROW SCREENS === */
@media (max-width: 520px) {
  header .container, footer .container { flex-direction: column; gap: 10px; align-items: flex-start; }
  .main-nav { gap: 8px; }
}

/* === PRINT === */
@media print { body, html { background: #fff !important; color: #222 !important; } }

/* === SPECIAL: NO GRID/COLUMNS === */
/* All layouts use only flexbox; no display:grid/grid-* or column-count/columns */
