/* 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 {
  font-size: 16px;
}
body {
  background: #F4F7F5;
  color: #263620;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #20572B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #4E9D5E;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  color: #20572B;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #4E9D5E;
}
h4, h5, h6 {
  font-size: 1.15rem;
  color: #20572B;
}
p {
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* FLEXBOX LAYOUTS & MANDATORY PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(80,98,70, 0.06);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 4px 14px rgba(80, 98, 70, 0.10);
  border-radius: 18px;
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(80,98,70,0.17);
  transform: translateY(-2px) scale(1.01);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF;
  border-radius: 18px;
  padding: 25px 30px;
  min-width: 280px;
  margin-bottom: 22px;
  box-shadow: 0 2px 14px rgba(80,98,70,0.14);
  border-left: 8px solid #4E9D5E;
  transition: box-shadow 0.20s, border-left 0.2s;
}
.testimonial-card p {
  margin: 0 0 4px 0;
  color: #263620;
  font-size: 1.10rem;
}
.testimonial-card span {
  font-size: 1rem;
  color: #20572B;
  opacity: 0.8;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px rgba(80,98,70,0.20);
  border-left: 8px solid #20572B;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F8FAF7;
  padding: 24px 18px;
  border-radius: 16px;
  box-shadow: 0 1px 7px rgba(80,98,70,0.07);
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* HEADER & NAVIGATION */
header {
  background: #FFF;
  box-shadow: 0 2px 12px rgba(80,98,70,0.04);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
}
header img {
  height: 48px;
  width: auto;
  border-radius: 12px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 8px 14px;
  border-radius: 16px;
  font-weight: 500;
  color: #20572B;
  transition: background 0.18s, color 0.18s;
}
.main-nav a.active, .main-nav a:hover, .main-nav a:focus {
  background: #F4F7F5;
  color: #4E9D5E;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  background: #4E9D5E;
  color: #FFF !important;
  padding: 13px 32px;
  border-radius: 24px;
  font-weight: bold;
  font-size: 1.15rem;
  box-shadow: 0 3px 15px rgba(78, 157, 94, 0.09);
  margin-left: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.16s;
  outline: none;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #20572B;
  color: #F4F7F5 !important;
  transform: translateY(-2px) scale(1.025);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #4E9D5E;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 14px;
  margin-left: 10px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(78,157,94,0.08);
  transition: background 0.18s, color 0.18s, transform 0.15s;
  z-index: 130;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #20572B;
  color: #F4F7F5;
  transform: scale(1.07);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F4F7F5;
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.47,1.64,.41,.8);
  box-shadow: 0 3px 28px 0 rgba(44,62,39,0.09);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  padding: 12px 14px;
  align-self: flex-end;
  margin: 16px 16px 0 0;
  cursor: pointer;
  color: #20572B;
  border-radius: 6px;
  transition: background 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E5EFE7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 32px;
  margin-top: 12px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #20572B;
  width: 100%;
  padding: 13px 6px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.18s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #4E9D5E;
  color: #fff;
}

@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* SECTIONS & GRIDS */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: transparent;
}

.content-wrapper > ul, .content-wrapper > div, .content-wrapper > a, .content-wrapper > table {
  margin-bottom: 18px;
}
.content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.content-wrapper ul li {
  background: #F8FAF7;
  padding: 20px 20px 18px 18px;
  border-radius: 16px;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
  box-shadow: 0 1px 7px rgba(78,157,94,0.06);
  margin-bottom: 10px;
}
.content-wrapper ul li img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

/* PRICING TABLE */
table {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(44, 62, 50, 0.07);
  border-collapse: collapse;
  overflow: hidden;
  margin-bottom: 18px;
  font-size: 1rem;
}
thead tr {
  background: #4E9D5E;
  color: #fff;
}
th, td {
  padding: 16px 10px;
  text-align: left;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.10rem;
  font-weight: 600;
}
tbody tr:nth-child(even) {
  background: #F4F7F5;
}
td {
  color: #263620;
}

/* BUTTONS (generic) */
button, input[type="submit"], input[type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #4E9D5E;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 21px;
  font-size: 1.06rem;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(78,157,94,0.08);
  margin-right: 10px;
  transition: background 0.16s, box-shadow 0.13s, transform 0.14s;
}
button:hover, button:focus, input[type="submit"]:hover, input[type="button"]:hover {
  background: #20572B;
  color: #fff;
  box-shadow: 0 4px 18px rgba(78,157,94,0.13);
  transform: translateY(-1.5px) scale(1.02);
}

/* FOOTER */
footer {
  background: #20572B;
  color: #F4F7F5;
  padding: 44px 0 16px 0;
  font-size: 1rem;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #F4F7F5;
  opacity: 0.92;
  padding: 7px 13px;
  border-radius: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.13s, opacity 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #4E9D5E;
  opacity: 1;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.footer-brand img {
  height: 36px;
  width: auto;
  border-radius: 8px;
  background: #F4F7F5;
}
.footer-brand span {
  font-size: 1.06rem;
  color: #F4F7F5;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
  font-size: 0.97rem;
}
.footer-contact a {
  color: #F4F7F5;
  text-decoration: underline dotted;
  margin-left: 3px;
  margin-right: 3px;
  transition: color 0.13s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #FFD5A5;
}

/* MINI CONTACT */
.mini-contact ul {
  flex-direction: column;
  gap: 9px;
}
.mini-contact li {
  background: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  font-size: 1.05rem;
  color: #20572B;
}
.mini-contact li img { width: 18px; height: 18px; margin-right: 2px; }

/* MAP EMBED */
.location-map-embed {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F4F7F5;
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 17px;
  font-size: 1.06rem;
  color: #20572B;
}
.location-map-embed img {
  width: 30px;
  height: 30px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 14px;
  z-index: 300;
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 8px 44px 0 rgba(32,87,43,0.14);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 30px 30px 22px 30px;
  transition: transform 0.22s, opacity 0.18s;
  opacity: 1;
}
.cookie-banner.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
}
.cookie-banner-text {
  font-size: 1.07rem;
  color: #20572B;
}
.cookie-banner-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-banner button,
.cookie-banner .cookie-set-btn {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, transform 0.13s;
}
.cookie-banner .accept-all {
  background: #4E9D5E;
  color: #fff;
}
.cookie-banner .accept-all:hover,
.cookie-banner .accept-all:focus {
  background: #20572B;
  color: #fff;
  transform: scale(1.04);
}
.cookie-banner .reject-all {
  background: #E9E4E0;
  color: #20572B;
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: #FFD5A5;
  color: #20572B;
  transform: scale(1.04);
}
.cookie-banner .cookie-set-btn {
  background: #FFFBE0;
  color: #20572B;
  border: 1px solid #D3DCCB;
}
.cookie-banner .cookie-set-btn:hover, .cookie-banner .cookie-set-btn:focus {
  background: #F4F7F5;
  color: #20572B;
}
/* Cookie modal popup prefs */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 120vh);
  z-index: 400;
  background: #FFF;
  border-radius: 30px;
  box-shadow: 0 12px 48px rgba(32,87,43,0.20);
  min-width: 340px;
  max-width: 96vw;
  padding: 42px 36px 25px 36px;
  transition: transform 0.26s cubic-bezier(.47,1.64,.41,.8);
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%);
}
.cookie-modal h3 {
  margin: 0 0 18px 0;
  color: #20572B;
}
.cookie-modal ul {
  margin-bottom: 22px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  background: #F8FAF7;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 1.04rem;
  color: #263620;
}
.cookie-modal .pref-toggle {
  margin-left: auto;
  appearance: none;
  width: 32px;
  height: 18px;
  background: #E4EEDB;
  border-radius: 10px;
  position: relative;
  outline: none;
  transition: background 0.14s;
  cursor: pointer;
  border: 1px solid #4E9D5E;
}
.cookie-modal .pref-toggle:checked {
  background: #4E9D5E;
}
.cookie-modal .pref-toggle::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 3px;
  transition: left 0.18s;
  box-shadow: 0 1px 6px rgba(78,157,94,0.07);
}
.cookie-modal .pref-toggle:checked::before {
  left: 15px;
}
.cookie-modal .save-btn {
  background: #20572B;
  color: #fff;
}
.cookie-modal .save-btn:hover, .cookie-modal .save-btn:focus {
  background: #4E9D5E;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px; right: 26px;
  background: none;
  border: none;
  color: #20572B;
  font-size: 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #F4F7F5;
}

/* TYPOGRAPHY & DETAILS */
::selection {
  background: #FFD5A5;
  color: #20572B;
}
hr {
  border: 0;
  border-top: 1.5px solid #EDEBEA;
  margin: 26px 0;
}

/* HEADINGS SPACING */
.content-wrapper h2,
.text-section h2 {
  margin: 6px 0 15px 0;
}

.text-section ul {
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
.text-section ul li {
  background: none;
  box-shadow: none;
  padding: 0 0 0 0;
  border-radius: 0;
  min-width: 0;
  color: #20572B;
  font-size: 1.06rem;
  gap: 7px;
}

/* HERO & CTA SPACING */
.content-wrapper > .cta-btn {
  margin-top: 12px !important;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .testimonial-card, .feature-item, .card, .section {
    padding: 20px 11px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  section, .section {
    margin-bottom: 38px;
    padding: 18px 0.5rem;
  }
  .content-wrapper, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 17px 10px;
  }
  .main-nav {
    display: none !important;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  h1 {
    font-size: 1.34rem;
  }
  .cookie-banner {
    padding: 17px 8px 17px 12px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    min-width: 0;
    padding: 18px 7vw 15px 7vw;
  }
}

/* TRANSITIONS, EFFECTS & MICRO-INTERACTIONS */
.card, .testimonial-card, .feature-item, .cta-btn, button, .main-nav a, .mobile-nav a {
  transition: box-shadow 0.19s, background 0.15s, color 0.15s, border-left 0.12s, transform 0.13s;
}

/* FURTHER ACCESSIBILITY: ensures contrast for testimonials/reviews */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #263620;
  background: #FFF;
}

/* =========== END ============ */
