/* === 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 {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #F5F7F8;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #222C32;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: #20623B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5A9123;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
  outline: none;
  background: none;
  border: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}

/* ==== TYPOGRAPHY ==== */
h1, .hero h1 {
  font-family: 'Roboto Slab', 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #20623B;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h2 {
  font-family: 'Roboto Slab', 'Times New Roman', Times, serif;
  font-weight: 600;
  font-size: 1.7rem;
  color: #222C32;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Roboto Slab', 'Times New Roman', Times, serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #20623B;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Roboto Slab', 'Times New Roman', Times, serif;
  color: #20623B;
}
p, li, dl, dd {
  font-size: 1rem;
  line-height: 1.7;
  color: #222C32;
}
strong {
  color: #20623B;
  font-weight: 700;
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(32,98,59,0.04);
}

/* ==== HERO SECTION ==== */
.hero {
  background: #E9F5E1;
  position: relative;
  margin-bottom: 60px;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
}
.hero .container {
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 260px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 540px;
  padding: 32px 0;
}
.hero p {
  font-size: 1.14rem;
}

/* ==== FEATURE GRID ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 32px 0 0 0;
}
.feature-grid > div {
  background: #F5F7F8;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(32,98,59,0.06);
  flex: 1 1 210px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
}
.feature-grid img {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 15px rgba(32,98,59,0.08);
  transform: translateY(-3px) scale(1.02);
}

/* ==== CARD CONTAINER ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 10px rgba(32,98,59,0.04);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-width: 230px;
  flex: 1 1 200px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(32,98,59,0.11);
  transform: translateY(-2px) scale(1.01);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== LISTINGS ==== */
ul, ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
li {
  margin-bottom: 8px;
}
dl {
  margin-bottom: 16px;
}
dt {
  font-weight: bold;
  margin-top: 12px;
}
dd {
  margin-bottom: 10px;
}

/* ==== TESTIMONIALS ==== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3F7F4;
  border-left: 5px solid #20623B;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(32,98,59,0.07);
  color: #2B353B;
  max-width: 700px;
  position: relative;
}
.testimonial-card p {
  color: #2B353B;
  font-size: 1.09rem;
  line-height: 1.75;
}
.testimonial-card span {
  color: #5A9123;
  font-size: 0.97rem;
  font-style: italic;
  font-weight: 400;
  opacity: 0.86;
}

/* ==== BUTTONS ==== */
.cta-btn,
button.cta-btn, .cookie-btn {
  display: inline-block;
  background: #20623B;
  color: #fff;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 28px;
  padding: 12px 32px;
  border: none;
  transition: background 0.2s, transform 0.16s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(32,98,59,0.08);
  margin-top: 12px;
  outline: none;
  text-align: center;
}
.cta-btn:hover, button.cta-btn:hover, .cookie-btn:hover,
.cta-btn:focus, button.cta-btn:focus, .cookie-btn:focus {
  background: #5A9123;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 18px rgba(32,98,59,0.13);
  color: #fff;
}

.cookie-btn.cookie-settings {
  background: #8CBF47;
  color: #fff;
  margin-right: 10px;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #5A9123;
  color: #fff;
}
.cookie-btn.reject {
  background: #bbc9bb;
  color: #20623B;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #788d78;
  color: #fff;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: #fff;
  box-shadow: 0 3px 16px rgba(32,98,59,0.07);
  padding: 0;
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
header a img {
  height: 40px;
  margin-right: 30px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-weight: 600;
  color: #20623B;
  padding: 6px 4px;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #E9F5E1;
}
header .cta-btn {
  margin-left: 32px;
}
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 101;
  background: #20623B;
  color: #fff;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  margin-left: 20px;
  transition: background 0.15s, box-shadow 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #5A9123;
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(50,64,67,0.94);
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.36,1.48,.3,.98);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: transparent;
  color: #fff;
  font-size: 2.1rem;
  z-index: 125;
  border-radius: 7px;
  width: 42px;
  height: 42px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #20623B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 84px;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  color: #E9F5E1;
  background: none;
  padding: 14px 0;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.17s, color 0.13s;
  width: 80vw;
  text-align: center;
  letter-spacing: 0.2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #20623B;
  color: #fff;
}


/* ==== FOOTER ==== */
footer {
  background: #20623B;
  color: #fff;
  padding: 36px 0 0 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  padding-bottom: 22px;
  gap: 40px;
}
footer nav {
  display: flex;
  gap: 24px;
}
footer nav a {
  color: #E9F5E1;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  padding: 4px 8px;
  transition: background 0.11s;
}
footer nav a:hover, footer nav a:focus {
  background: #8CBF47;
}
.footer-contact p {
  font-size: 0.98rem;
  color: #E5F2E4;
  line-height: 1.7;
  margin-top: 6px;
}

/* ==== SPECIAL SECTIONS/CLASSES ==== */
.sample-newsletter {
  background: #F5F7F8;
  border-radius: 10px;
  padding: 16px 20px;
  color: #222C32;
  box-shadow: 0 1px 8px rgba(32,98,59,0.05);
  margin-top: 16px;
}

.section ul {
  padding-left: 32px;
}
.section ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #222C32;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px 18px 16px;
  z-index: 9999;
  gap: 20px;
  box-shadow: 0 -2px 22px #20623b17;
  font-size: 1rem;
  transition: transform 0.3s ease, opacity 0.3s;
}
.cookie-banner p {
  color: #fff;
  margin-right: 16px;
  max-width: 550px;
}
.cookie-banner .cookie-btn {
  margin-left: 8px;
  margin-bottom: 0;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-modal-backdrop {
  position: fixed;
  z-index: 10000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32, 50, 34, 0.53);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.26s;
}
.cookie-modal {
  background: #fff;
  color: #222C32;
  border-radius: 14px;
  max-width: 90vw;
  width: 430px;
  box-shadow: 0 8px 32px 0 rgba(32,98,59,0.19);
  padding: 32px 32px 24px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadePopIn 0.27s cubic-bezier(.36,1.78,.48,.89);
}
@keyframes fadePopIn {
  0% {
    opacity: 0; transform: scale(0.99) translateY(20px);
  }
  100% {
    opacity: 1; transform: scale(1) translateY(0);
  }
}
.cookie-modal h3 {
  font-size: 1.19rem;
  font-family: 'Roboto Slab', 'Times New Roman', Times, serif;
  color: #20623B;
  margin-bottom: 12px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.cookie-switch {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #bbc9bb;
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background .15s;
}
.cookie-switch:checked {
  background: #8CBF47;
}
.cookie-switch::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 5px rgba(40, 75, 60, 0.07);
  transition: left .15s, background .14s;
}
.cookie-switch:checked::before {
  left: 20px;
  background: #fff;
}
.cookie-modal .cookie-btn {
  margin-top: 16px;
}
.cookie-modal .cookie-close {
  position: absolute;
  right: 14px;
  top: 14px;
  color: #20623B;
  background: none;
  font-size: 1.4rem;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  background: #E9F5E1;
}


/* ==== FORMS, NEWSLETTER, SEARCH ==== */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 12px 14px;
  margin: 8px 0 16px 0;
  border: 1.5px solid #8CBF47;
  border-radius: 8px;
  background: #F3F7F4;
  box-shadow: none;
  transition: border 0.14s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #20623B;
  background: #fff;
}
label {
  font-weight: 600;
  color: #20623B;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
    padding: 0 10px;
  }
  header .container {
    flex-wrap: wrap;
    gap: 12px;
  }
  .feature-grid > div, .card {
    flex: 1 1 180px;
    min-width: 150px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  header nav {
    gap: 12px;
  }
  .footer-contact {
    margin-top: 24px;
  }
  .feature-grid {
    gap: 16px;
  }
  .card-container {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 97%;
  }
  .container, .footer .container {
    flex-direction: column;
    gap: 0;
  }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .section {
    padding: 26px 8px;
    margin-bottom: 32px;
  }
  .hero .content-wrapper {
    padding: 20px 0;
    max-width: 95vw;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .feature-grid > div, .card {
    width: 96vw;
    min-width: 0;
    margin-bottom: 16px;
  }
  .sample-newsletter {
    padding: 10px 10px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 12px;
  }
  footer .container {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 1rem; }
  .hero { min-height: 130px; }
  .footer-contact {
    font-size: 0.94rem;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .container, .section, .content-wrapper {
    padding: 0 2vw;
  }
  .footer-contact p { font-size: 0.92rem; }
  .cookie-modal {
    padding: 16px 6vw 12px 6vw;
    width: 97vw;
  }
}

/* === UTILITIES === */
.hide, .hidden {
  display: none !important;
}

/* == ELEVATE INTERACTIVE ELEMENTS (cards, buttons, nav) == */
.card:focus-within, .feature-grid > div:focus-within {
  border-color: #20623B;
  outline: 2px solid #5A9123;
}

/* == Z-INDEX for overlays == */
header, .mobile-menu-toggle, .mobile-menu, .mobile-menu-close {
  z-index: 200;
}
.cookie-modal-backdrop, .cookie-modal {
  z-index: 9999;
}

/* == SCROLLBAR == */
::-webkit-scrollbar {
  width: 8px;
  background: #E9F5E1;
}
::-webkit-scrollbar-thumb {
  background: #bbc9bb;
  border-radius: 5px;
}

/* == Focus styles == */
a:focus, button:focus, .cta-btn:focus, input:focus, .mobile-menu-close:focus {
  outline: 2px solid #5A9123;
  outline-offset: 1px;
  background: #E9F5E1;
}

/* == Misc == */
::selection {
  background: #8CBF47;
  color: #fff;
}

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