/* RESET & 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,
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; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #1E2721;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a { color: #245A2D; text-decoration: none; transition: color 0.2s; }
a:hover,
a:focus { color: #8CC63F; outline: none; }
ul, ol { padding-left: 22px; margin-bottom: 1.5em; }
li { margin-bottom: 8px; }
strong { font-weight: 600; }


/* TYPOGRAPHY SCALE ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #245A2D;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 20px; letter-spacing: -0.5px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }
h5, h6 { font-size: 1rem; }
p {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; margin-bottom: 18px; }
  h2 { font-size: 1.5rem; }
}


/* CONTAINER & LAYOUT -------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.content-wrapper {
  padding: 0;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 30px 10px;
    margin-bottom: 36px;
  }
}

/* FLEXBOX GRIDS ------------------------------------------------------------- */
.feature-grid, .card-container, .content-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.card-container { gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: #fff; border-radius: 12px; box-shadow: 0 2px 12px 0 rgba(36,90,45,0.03); transition: box-shadow 0.2s, transform 0.2s; padding: 28px 22px; min-width: 250px; min-height: 110px; }
.card:hover {
  box-shadow: 0 4px 18px 0 rgba(36,90,45,0.08);
  transform: translateY(-4px) scale(1.012);
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex; align-items: center; gap: 30px; flex-wrap: wrap;
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid, .features {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section { flex-direction: column; gap: 20px; }
}

.feature {
  background: #F6FAED;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(36,90,45,0.02);
  padding: 28px 22px;
  flex: 1 1 210px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature img {
  width: 38px; height: 38px; margin-bottom: 10px;
}
.feature:hover {
  box-shadow: 0 4px 20px 0 rgba(36,90,45,0.08);
  transform: translateY(-2px) scale(1.01);
}

/* BUTTONS ------------------------------------------------------------------- */
.cta-button, button, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 12px 30px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 28px;
  border: none;
  background: #245A2D;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.14s;
  box-shadow: 0 1px 6px 0 rgba(36,90,45,0.05);
  outline: none;
}
.cta-button:hover, .cta-button:focus,
button:hover, button:focus,
.button:hover, .button:focus {
  background: #8CC63F;
  color: #245A2D;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 3px 14px 0 rgba(140,198,63,0.11);
}
.button-secondary {
  background: #fff; color: #245A2D; border: 2px solid #245A2D;
}
.button-secondary:hover, .button-secondary:focus {
  border-color: #8CC63F;
  color: #245A2D; background: #F6FAED;
}

/* NAVIGATION --------------------------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(140,198,63,0.03);
  z-index: 1900;
  position: sticky;
  top: 0;
}
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
  padding: 20px 0;
  position: relative;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.main-nav img {
  margin-right: 16px; width: 46px; height: 46px;
}
.main-nav a {
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.18s;
  color: #245A2D;
  font-weight: 500;
}
.main-nav .cta-button {
  margin-left: auto; /* push to end */
  margin-right: 0;
  font-size: 1rem;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F6FAED; color: #245A2D;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
    font-size: 0.97rem;
  }
}

@media (max-width: 900px) {
  .main-nav .cta-button { margin-left: 0; }
}
@media (max-width: 820px) {
  .main-nav { font-size: 0.95rem; gap: 10px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* MOBILE MENU -------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 20px; right: 24px;
  background: #fff;
  color: #245A2D;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  justify-content: center; align-items: center;
  box-shadow: 0 2px 9px 0 rgba(140,198,63,0.03);
  cursor: pointer;
  z-index: 2020;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F6FAED; color: #8CC63F;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(36,90,45,0.22);
  z-index: 4000;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0; transition: opacity 0.22s;
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu > .mobile-nav {
  background: #fff;
  min-width: 74vw;
  max-width: 390px;
  width: 100%; height: 100vh;
  display: flex; flex-direction: column;
  align-items: flex-start;
  padding: 38px 24px 24px 24px;
  box-shadow: -6px 0 12px 0 rgba(36,90,45,0.12);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.6,1.5,.07,.97);
  z-index: 4100;
}
.mobile-menu.open > .mobile-nav { transform: translateX(0); }

.mobile-menu-close {
  position: absolute;
  top: 22px; right: 30px;
  background: #F6FAED;
  border: none;
  color: #245A2D;
  font-size: 2.1rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 4002;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #8CC63F;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 42px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  color: #245A2D;
  padding: 14px 0 14px 6px;
  border-radius: 6px;
  width: 100%;
  transition: background 0.17s, color 0.15s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6FAED;
  color: #8CC63F;
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* HERO SECTION ------------------------------------------------------------- */
.hero {
  background: #F6FAED;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 370px;
  margin-bottom: 44px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  padding: 50px 20px 38px 20px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 600px;
}
.hero h1 {
  color: #245A2D;
}
.hero p {
  color: #3D583A;
  font-size: 1.17rem;
}

/* CTA SECTIONS ------------------------------------------------------------- */
.cta {
  background: #245A2D;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(36,90,45,0.07);
  text-align: left;
  margin: 52px 0 0 0;
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 10px 36px 10px;
  gap: 18px;
}
.cta h2,
.cta p { color: #fff; }
.cta .cta-button {
  background: #8CC63F; color: #245A2D; border: none;
}
.cta .cta-button:hover, .cta .cta-button:focus {
  background: #fff; color: #245A2D;
  box-shadow: 0 3px 18px 0 rgba(140,198,63,0.12);
}

/* LISTS --------------------------------------------------------------------- */
ul, ol {
  margin-bottom: 20px;
}
ul li, ol li {
  line-height: 1.7;
  color: #284832;
  margin-bottom: 8px;
  font-size: 1rem;
}
.text-section ul li img {
  width: 24px; height: 24px; margin-right: 10px; vertical-align: middle;
}

.quick-actions {
  margin-top: 18px;
  background: #F6FAED;
  padding: 14px 18px;
  border-radius: 8px;
}
.quick-actions h3 {
  margin-bottom: 10px;
}

.map-placeholder {
  background: #F6FAED;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 14px;
  font-size: 1rem;
  color: #245A2D;
}
.map-placeholder img { width: 26px; height: 26px; margin-right: 4px; }

/* TESTIMONIAL CARD ---------------------------------------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  background: #F6FAED;
  color: #245A2D;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px 0 rgba(36,90,45,0.07);
  font-size: 1.07rem;
  min-width: 220px;
  max-width: 600px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.testimonial-card:last-child { margin-bottom: 0; }
.testimonial-card strong { color: #245A2D; }
.testimonial-card:hover {
  box-shadow: 0 4px 22px 0 rgba(140,198,63,0.14);
  transform: translateY(-2px) scale(1.01);
}

@media (max-width: 568px) {
  .testimonial-card { padding: 16px; font-size: 0.97rem; }
}

/* FOOTER ------------------------------------------------------------------- */
footer {
  background: #F6FAED;
  padding: 36px 18px 16px 18px;
  margin-top: 44px;
  border-top: 1px solid #E1ECD0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #245A2D;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #8CC63F; color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 0 4px 0;
  align-items: center;
  color: #243829;
  font-size: 0.99rem;
}
.footer-contact img { vertical-align: middle; margin-right: 6px; width: 20px; height: 20px; }
footer small {
  color: #7DA056;
  margin-top: 10px;
  font-size: 0.95rem;
}

@media (max-width: 620px) {
  .footer-nav {
    gap: 10px;
    font-size: 0.95rem;
  }
  .footer-contact { font-size: 0.95rem; }
}

/* CONTACT & INFO ----------------------------------------------------------- */
.contact-info {
  margin: 24px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 1.07rem;
  color: #245A2D;
}
.contact-info img {
  width: 22px; height: 22px;
  margin-right: 7px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .contact-info { font-size: 0.97rem; }
}

/* MISC SECTIONS ------------------------------------------------------------ */
.text-section {
  margin-bottom: 18px;
}
.text-section h3 {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
  font-size: 1.09rem; font-weight: 500;
}
.text-section img {
  width: 24px; height: 24px;
}

/* FAQ/Policy Sections ------------------------------------------------------- */
.text-section h2, .text-section h3 {
  color: #245A2D;
}
.text-section h2 {
  font-size: 1.25rem;
  margin-top: 18px;
  margin-bottom: 8px;
}
.text-section h3 { margin-bottom: 4px; font-size: 1.09rem; }
.text-section p { margin-bottom: 12px; }
.text-section ul li { color: #284832; font-size: 0.99rem; }


/* COOKIE CONSENT BANNER ----------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 16px 0 rgba(36,90,45,0.06);
  border-top: 1px solid #E1ECD0;
  z-index: 8000;
  display: flex;
  justify-content: center;
  padding: 0;
  transition: transform 0.34s;
  transform: translateY(0);
}
.cookie-banner.hide { transform: translateY(110%); pointer-events: none; }
.cookie-banner-inner {
  max-width: 1024px;
  padding: 18px 12px;
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner-text {
  color: #245A2D;
  font-size: 1rem;
  flex: 1 1 200px;
}
.cookie-banner-actions {
  display: flex; gap: 18px;
  flex: 0 1 auto;
  align-items: center;
}
.cookie-banner .button,
.cookie-banner .button-secondary {
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 21px;
  margin: 0;
}
.cookie-banner .button-secondary {
  background: #fff;
  color: #245A2D;
  border: 1.5px solid #245A2D;
  box-shadow: none;
}
.cookie-banner .button-secondary:hover, .cookie-banner .button-secondary:focus {
  background: #F6FAED; color: #8CC63F; border-color: #8CC63F;
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 16px 6px;
  }
  .cookie-banner-actions{
    width: 100%; gap: 8px;
  }
}

/* COOKIE PREFERENCES MODAL -------------------------------------------------- */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(75, 87, 66, 0.19);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal-backdrop.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(36,90,45,0.12);
  min-width: 330px;
  max-width: 400px;
  width: 100%;
  padding: 30px 26px 22px 26px;
  z-index: 20001;
  display: flex; flex-direction: column; gap: 19px;
  position: relative;
  transform: translateY(40px) scale(0.99);
  opacity: 0.99;
  transition: transform 0.24s cubic-bezier(.63,.17,.38,1.22);
}
.cookie-modal-backdrop.open .cookie-modal {
  transform: translateY(0) scale(1);
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 20px;
  background: #F6FAED;
  border: none;
  color: #245A2D;
  font-size: 1.4rem;
  border-radius: 50%;
  cursor: pointer;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #8CC63F; color: #fff;
}
.cookie-modal h2 {
  margin-top: 0; color: #245A2D; font-size: 1.25rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 9px 0 0 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F6FAED;
  padding: 12px 13px;
  border-radius: 8px;
  font-size: 1rem;
}
.cookie-category .toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #8CC63F;
}
.cookie-category .always-on {
  color: #8CC63F; font-weight: 600;
  font-size: 0.97rem;
  background: none; border: none;
  pointer-events: none;
}
.cookie-modal .button {
  margin-top: 10px;
  width: 100%;
  font-size: 1.09rem;
}

@media (max-width: 430px) {
  .cookie-modal { padding: 22px 7px 16px 7px; }
}

/* GENERAL UTILITIES -------------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-12 { margin-top: 12px !important; }
.text-center { text-align: center; }
.flex-between { display: flex; justify-content: space-between; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-col { flex-direction: column; }

/* SPACING UTILITY FOR FLEX CARDS -------------------------------------------- */
.card-container > *, .feature-grid > *, .content-grid > *, .testimonial-card, .feature {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .card-container > *, .feature-grid > *, .content-grid > *, .testimonial-card, .feature {
    margin-bottom: 16px;
  }
}

/* MICRO-INTERACTIONS -------------------------------------------------------- */
a, button, .cta-button, .button, input, select {
  transition: background 0.13s, color 0.14s, box-shadow 0.18s, transform 0.13s;
}

input:focus, button:focus, .cta-button:focus, .cookie-modal button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #8CC63F;
  outline-offset: 1px;
}

/* ACCESSIBILITY ENHANCEMENTS ------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

/* SCROLLBAR MINIMAL -------------------------------------------------------- */
::-webkit-scrollbar { width: 8px; background: #F6FAED; }
::-webkit-scrollbar-thumb { background: #E1ECD0; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #8CC63F; }

/* Hide scroll on body when mobile menu/cookie modal open */
body.mobile-menu-open, body.cookie-modal-open { overflow: hidden; }

/* END OF CSS */
