/* RESET AND BASE TYPOGRAPHY */
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 {
  font-size: 16px;
  line-height: 1.5;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background-color: #F3F7F2;
  color: #22311C;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1.5em;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 0.5em;
}
a {
  color: #236637;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #456BD9;
  text-decoration: none;
}

/* TYPOGRAPHY SCALE & HEADINGS */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  color: #236637;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  color: #236637;
  margin-bottom: 20px;
  font-weight: 600;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #3C462A;
  margin-bottom: 16px;
  font-weight: 500;
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
}
p {
  margin-bottom: 18px;
  color: #22311C;
  font-size: 1rem;
}
strong {
  color: #22311C;
  font-weight: 700;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #FFF;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(26,57,32,0.07);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
  .container {
    padding: 0 10px;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 10px;
  }
}

/* FLEXBOX CARDS & FEATURES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background-color: #F3F7F2;
  margin-bottom: 20px;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(26,57,32,0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 270px;
  transition: box-shadow 0.23s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(69,107,217,0.10);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background-color: #FFF;
  border-radius: 16px;
  box-shadow: 0 3px 14px rgba(35,102,55,0.08);
  margin-bottom: 20px;
  color: #22311C !important;
  border-left: 7px solid #236637;
  min-width: 220px;
  max-width: 540px;
  transition: box-shadow 0.23s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(69,107,217,0.12);
}
.testimonial-card strong {
  color: #236637;
}

/* BUTTONS */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #236637;
  color: #FFF;
  border: none;
  border-radius: 32px;
  padding: 14px 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.25s, color 0.18s, box-shadow 0.21s;
  box-shadow: 0 2px 8px rgba(35,102,55,0.08);
  margin-top: 12px;
  text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus {
  background-color: #456BD9;
  color: #FFF;
  box-shadow: 0 4px 16px rgba(69,107,217,0.12);
}

/* HEADER & NAVIGATION */
header {
  background-color: #F3F7F2;
  padding: 0 0 0 0;
  box-shadow: 0 2px 12px rgba(35,102,55,0.03);
  position: relative;
  z-index: 10;
}
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  min-height: 76px;
}
header > a img {
  height: 52px;
  margin: 12px 18px 12px 8px;
}
nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-right: 24px;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #236637;
  padding: 8px 14px;
  border-radius: 18px;
  transition: background 0.22s, color 0.18s;
  font-weight: 500;
  text-decoration: none;
}
nav a:hover, nav a:focus {
  background: #DDEEE0;
  color: #456BD9;
}
header .cta-btn {
  margin-left: auto;
  margin-right: 24px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #236637;
  margin-right: 12px;
  cursor: pointer;
  padding: 3px 10px;
  z-index: 150;
  transition: background 0.18s, color 0.14s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #E6F0E3;
  color: #456BD9;
  border-radius: 50%;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 102, 55, 0.96);
  transform: translateX(-100%);
  z-index: 4000;
  transition: transform 0.37s cubic-bezier(0.22,0.68,0.37,1.01);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFF;
  font-size: 2.2rem;
  padding: 10px 18px;
  align-self: flex-end;
  margin: 18px 22px 0 0;
  cursor: pointer;
  transition: background 0.17s;
  z-index: 4010;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #456BD9;
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin: 40px 0 0 32px;
  width: 85vw;
}
.mobile-nav a {
  font-size: 1.23rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #FFF;
  background: transparent;
  padding: 12px 0 12px 2px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.21s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #DDEEE0;
  color: #236637;
  padding-left: 16px;
}
@media (max-width: 1100px) {
  nav {
    gap: 10px;
  }
  header .cta-btn {
    margin-right: 12px;
  }
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* MAIN CONTENT BLOCKS / FORMS / MAP BOXES */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
@media (max-width: 600px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.42rem; }
  .cta-btn {
    padding: 12px 18px;
    font-size: 0.97rem;
  }
}

/* DECORATIVE ICONS IN LISTS */
ul li > img, ol li > img {
  display: inline-block;
  width: 24px; height: 24px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 7px;
  background: #F3F7F2;
  box-shadow: 0 1px 3px rgba(35,102,55,0.04);
}

/* FOOTER */
footer {
  background: #236637;
  color: #F3F7F2;
  width: 100%;
  padding: 36px 0 18px 0;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-size: 0.97rem;
  margin-bottom: 6px;
}
.footer-menu a {
  color: #DDEEE0;
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #F3F7F2;
  text-decoration: none;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.99rem;
  color: #F3F7F2;
}
.footer-contact a {
  color: #DDEEE0;
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #FFF;
}
@media (max-width: 600px) {
  footer {
    padding: 28px 0 10px 0;
    font-size: 0.96rem;
  }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #22311C;
  color: #FFF;
  padding: 28px 24px 20px 24px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 -6px 32px rgba(35,102,55,0.16);
  border-radius: 14px 14px 0 0;
  width: 100%;
  gap: 15px;
  animation: cookieSlideUp 0.65s cubic-bezier(0.23,0.92,0.42,1.14);
}
@keyframes cookieSlideUp {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 6px;
}
.cookie-banner button,
.cookie-banner .cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin: 0;
  margin-right: 8px;
  transition: background 0.19s, color 0.16s, box-shadow 0.12s;
}
.cookie-banner .accept-btn    { background: #236637; color: #FFF; }
.cookie-banner .accept-btn:hover    { background: #348D50; }
.cookie-banner .reject-btn    { background: #FFF; color: #236637; }
.cookie-banner .reject-btn:hover    { background: #fdbc5a; color:#22311C; }
.cookie-banner .settings-btn  { background: #456BD9; color: #FFF; }
.cookie-banner .settings-btn:hover  { background: #3346a4; }

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 95vw;
  max-width: 420px;
  min-width: 290px;
  background: #FFF;
  color: #22311C;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(35,102,55,0.18);
  transform: translate(-50%,-200%);
  z-index: 6000;
  opacity: 0;
  pointer-events: none;
  padding: 30px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.45s cubic-bezier(.21,.82,.38,.98), opacity 0.17s;
}
.cookie-modal .modal-close-btn {
  position: absolute;
  top: 13px;
  right: 12px;
  background: none;
  border: none;
  color: #236637;
  font-size: 1.45rem;
  cursor: pointer;
  transition: background 0.18s;
  padding: 5px 7px;
}
.cookie-modal .modal-close-btn:hover {
  background: #E6F0E3;
  border-radius: 50%;
}
.cookie-modal.open {
  transform: translate(-50%,-50%);
  opacity: 1;
  pointer-events: all;
}
.cookie-modal h2 { color: #236637; font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #236637;
  width: 21px;
  height: 21px;
}
.cookie-modal .essential {
  color: #adadad;
  font-size: 0.98rem;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 16px;
}
.cookie-modal .modal-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  padding: 9px 24px;
  background: #236637;
  color: #FFF;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
}
.cookie-modal .modal-actions .reject-btn {
  background: #FFF;
  color: #236637;
}
.cookie-modal .modal-actions .settings-btn {
  background: #456BD9;
  color: #FFF;
}

/* ACCESSIBLE HIDE */
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; border: 0 !important; }

/* ORGANIC SHAPES DECORATIVE (FOR CTA, HERO, BACKGROUND) */
.organic-bg-curve {
  background: #E8EEEA;
  border-radius: 200px 22px 120px 180px / 140px 320px 70px 120px;
  opacity: 0.4;
  width: 100%;
  height: 88px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

/* Misc */
::-webkit-input-placeholder { color: #8da68d; opacity: 1; }
::placeholder { color: #8da68d; opacity: 1; }

/* SCROLLBAR STYLE */
::-webkit-scrollbar {
  width: 8px;
  background: #E6F0E3;
}
::-webkit-scrollbar-thumb {
  background: #C9DFD0;
  border-radius: 8px;
}

/* Animations for hover/focus micro-interactions */
.cta-btn, .card, .testimonial-card, nav a, .cookie-banner button, .cookie-modal button {
  transition: box-shadow 0.22s, background 0.18s, color 0.18s, transform 0.1s;
}
.card:active, .cta-btn:active, nav a:active {
  transform: scale(0.97);
}

/* Highlighted selection */
::selection {
  background: #C9DFD0;
  color: #22311C;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .testimonial-card {
    max-width: 98vw;
    padding: 16px 9px;
    font-size: 0.96rem;
  }
  .section { padding: 16px 3px; }
}

/* ORGANIC CARD BORDERS */
.card, .testimonial-card, .section {
  border-radius: 22px 16px 32px 18px / 18px 22px 28px 18px;
}

/* List checkmark style for nature */
ul > li::marker, ol > li::marker {
  color: #236637;
}
ul li {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

/* Utility classes for spacing */
.mt-24 { margin-top:24px !important; }
.mb-24 { margin-bottom:24px !important; }

/* Z-INDEX LAYERING UTILITY */
.mobile-menu, .cookie-banner, .cookie-modal { z-index: 5000; }

/* END */
