/* ================== CSS RESET & BASE ================== */
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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  background: #F5F1ED;
  color: #294130;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #256540;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #7BC67E;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
  list-style-type: disc;
}
/* ======= Typography Scale ======= */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #256540;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #256540;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #256540;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
}
p, .brand-tagline {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #2D4633;
}
blockquote {
  padding: 24px 32px 24px 24px;
  background: #E8ECDA;
  border-left: 5px solid #256540;
  font-style: italic;
  color: #294130;
  border-radius: 16px;
  margin: 28px 0;
}
blockquote p {
  margin-bottom: 8px;
}
blockquote .name {
  font-weight: 700;
  font-size: 1rem;
  color: #256540;
}
strong {
  font-weight: 700;
  color: #256540;
}
small {
  font-size: 0.88rem;
}
/* ================== LAYOUT STRUCTURE ================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px 28px 45px 28px;
  box-shadow: 0 2px 16px 0 rgba(39,82,46,0.06);
}
/* ================= HEADER & NAVIGATION ================= */
header {
  background: #FFFDF8;
  border-bottom: 1.5px solid #E6E6D6;
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.site-logo {
  padding: 8px 0;
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: 35px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  user-select: none;
  letter-spacing: 0.02em;
  color: #256540;
  font-size: 1.07rem;
  position: relative;
  padding: 3px 5px;
  border-radius: 6px;
  transition: background 0.18s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E8ECDA;
  color: #1E4A2E;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #256540;
  color: #fff;
  border: none;
  padding: 13px 29px;
  border-radius: 32px 38px 32px 26px;
  font-weight: 600;
  font-size: 1.14rem;
  box-shadow: 0 3px 12px rgba(56,75,49,0.08);
  margin-left: 28px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.22s, color 0.14s, transform 0.16s;
  outline: none;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #7BC67E;
  color: #256540;
  box-shadow: 0 6px 23px rgba(39,82,46,0.13);
  transform: translateY(-2px) scale(1.03);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #256540;
  cursor: pointer;
  padding: 8px 14px;
  transition: background 0.15s;
  border-radius: 8px;
  margin-left: 16px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E8ECDA;
}
@media (max-width: 992px) {
  header .container {
    padding: 0 14px;
  }
  .main-nav {
    gap: 16px;
    margin-left: 10px;
  }
  .cta-btn {
    padding: 11px 16px;
    font-size: 1rem;
    margin-left: 12px;
  }
}
@media (max-width: 768px) {
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
/* ================= MOBILE MENU OVERLAY ================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: rgba(37, 101, 64, 0.96);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.72,0,0.29,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 24px 26px 0 0;
  padding: 9px 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #7BC67E;
  color: #256540;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100vw;
  margin: 18vh 0 0 32px;
  pointer-events: auto;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.35rem;
  padding: 12px 7px;
  border-radius: 9px;
  width: calc(100vw - 64px);
  transition: background 0.17s, color 0.17s;
  display: inline-block;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7BC67E;
  color: #256540;
}
@media (min-width:769px) {
  .mobile-menu {
    display: none !important;
  }
}
/* ================= HERO SECTIONS ================= */
.hero {
  background: linear-gradient(97deg,#F5F1ED 53%,#E8ECDA 99%);
  padding: 60px 0 60px;
  margin-bottom: 44px;
  border-radius: 0 0 54px 54px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero h1 {
  color: #256540;
  font-size: 2.7rem;
  margin-bottom: 19px;
}
.hero p {
  color: #364A34;
  font-size: 1.19rem;
  font-weight: 400;
  margin-bottom: 22px;
}
.hero .cta-btn {
  margin-top: 4px;
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 33px;
    border-radius: 0 0 25px 25px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
}
/* ================= FLEX LAYOUTS REQUIRED BY SPEC ================= */
.features, .benefits, .services, .values, .service-teaser, .feature-grid, .card-container, .card, .content-grid, .text-image-section, .testimonial-card {
  box-sizing: border-box;
}
.features .container,
.benefits .container,
.services .container,
.values .container,
.service-teaser .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 16px 0;
}
.feature {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 330px;
  background: #fff;
  border-radius: 18px 18px 30px 18px;
  box-shadow: 0 2px 10px rgba(39,82,46,0.06);
  padding: 32px 20px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.16s, transform 0.13s;
  border: 1.5px solid #E6E6D6;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 5px 32px rgba(39,82,46,0.09);
  transform: translateY(-3px) scale(1.01);
}
.feature img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
@media (max-width: 992px) {
  .feature-grid {
    gap: 18px;
  }
  .feature {
    padding: 24px 12px 20px;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    padding: 17px 9px 13px;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 220px;
  border-radius: 21px;
  box-shadow: 0 2px 10px rgba(24,54,32,0.05);
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 28px 20px;
  border: 1.5px solid #E8ECDA;
}
.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 {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
/* Testimonial Card Flex Styles */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #E8ECDA;
  border-radius: 19px 25px 18px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(24,54,32,0.07);
  border-left: 6px solid #256540;
  font-size: 1.05rem;
  color: #263A27;
  min-width: 0;
}
.testimonial-card .name {
  font-weight: 700;
  font-size: 1.06rem;
  color: #256540;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    font-size: 1rem;
  }
}
.newsletter .text-section ul li {
  list-style-type: disc;
  margin-left: 20px;
  color: #256540;
}
/* ======= Spacing Patterns ======= */
.section, .about, .legal, .info, .faq, .newsletter, .contact, .confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .feature, .testimonial-card {
  margin-bottom: 20px;
}
/* ======================= ABOUT/LEGAL/TEXT SECTIONS ======================= */
.text-section {
  margin-top: 12px;
  margin-bottom: 12px;
}
.text-section h2 {
  margin-top: 37px;
}
.text-section h3 {
  margin-top: 23px;
}
.text-section ul,
.text-section ol {
  margin-bottom: 12px;
}
/* ======================= Table Styles ======================= */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(39,82,46,0.04);
}
table th, table td {
  text-align: left;
  padding: 17px 17px;
  border-bottom: 1px solid #E8ECDA;
  font-family: 'Montserrat', Arial, sans-serif;
}
table th {
  background: #E8ECDA;
  color: #256540;
  font-weight: 600;
  font-size: 1.06rem;
}
table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 650px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  table { box-shadow:none; }
  table th, table td {
    width: 100%;
    padding: 12px 11px;
    border-bottom: none;
  }
  table th { background: #E8ECDA; }
}
/* ======================= FORM & INPUT ======================= */
input[type="text"],
input[type="email"],
input[type="search"],
textarea {
  border: 1.4px solid #E8ECDA;
  border-radius: 14px;
  padding: 11px 14px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #256540;
  margin-bottom: 18px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.19s;
  width: 100%;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus {
  border-color: #7BC67E;
  box-shadow: 0 0 0 1.5px #7BC67E44;
}
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}
.filter {
  background: #E8ECDA;
  color: #256540;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 16px;
  padding: 7px 19px;
  cursor: pointer;
  user-select: none;
  border: none;
  font-weight: 500;
  transition: background 0.14s, color 0.13s, transform 0.14s;
  outline: none;
}
.filter:hover, .filter:focus {
  background: #7BC67E;
  color: #fff;
  transform: scale(1.06);
}
/* ======================= FOOTER ======================= */
footer {
  background: #256540;
  color: #fff;
  width: 100%;
  border-radius: 54px 54px 0 0;
  margin-top: 65px;
  box-shadow: 0 -2px 14px rgba(39,82,46,0.05);
}
footer .container {
  padding: 38px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand-tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #E8ECDA;
  margin-left: 7px;
}
.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 11px 0 0 0;
  font-size: 1rem;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-radius: 7px;
  padding: 4px 9px;
  transition: background 0.18s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #7BC67E;
  color: #256540;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin: 0 0 9px 0;
}
.footer-social img {
  width: 31px;
  height: 31px;
  filter: brightness(0) invert(1) sepia(.3) saturate(.9) hue-rotate(-32deg);
  opacity: 0.91;
  transition: opacity 0.13s, filter 0.15s;
  cursor: pointer;
}
.footer-social img:hover {
  opacity: 1;
  filter: brightness(1) sepia(.7) saturate(1.3) hue-rotate(-16deg);
}
.footer-bottom {
  text-align: left;
  color: #E8ECDA;
  margin-top: 8px;
}
@media (max-width: 600px) {
  footer .container {
    padding: 25px 7px 9px;
  }
  .footer-top {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 10px;
    font-size: 0.96rem;
  }
  .footer-social img {
    width: 25px;
    height: 25px;
  }
}
/* ================= GENERAL ORGANIC/NATURE SYLE THEME ================= */
body, .section, .card, .feature, .testimonial-card {
  /* Natural textures mimicked by soft shadow/light earth-tone backgrounds */
  background: #F5F1ED;
}
.section, .feature, .testimonial-card, .card {
  border-radius: 19px 27px 21px 35px;
  box-shadow: 0 2px 11px 0 rgba(63, 93, 69, 0.06);
}
.feature, .card {
  background: #fff;
}
.hero, .about, .legal {
  background: linear-gradient(95deg, #F5F1ED 57%, #E8ECDA 100%);
}
.values {
  background: #F9F8F2;
  border-radius: 40px 40px 55px 30px;
}
.feature-grid .feature {
  border-top: 3.5px solid #7BC67E;
}
blockquote, .testimonial-card {
  background: #E8ECDA;
}
/* Organic shapes via border-radius */
.feature, .testimonial-card, .cta-btn, .card {
  border-radius: 21px 29px 32px 18px;
}
/* ==================== COOKIE CONSENT BANNER ==================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #E8ECDA;
  box-shadow: 0 -3px 28px rgba(39,82,46,0.11);
  z-index: 3000;
  padding: 22px 16px 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 33px;
  font-size: 1.03rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #223A27;
  transition: transform 0.4s cubic-bezier(.7,0,.23,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 18px 26px 18px 24px;
  font-size: 0.99rem;
  padding: 10px 21px;
  margin-left: 0;
  cursor: pointer;
  background: #256540;
  color: #fff;
  box-shadow: 0 2px 8px rgba(79,150,94,0.07);
  transition: background 0.15s, color 0.11s, transform 0.13s, box-shadow 0.16s;
  outline: none;
  margin-bottom: 0;
}
.cookie-settings-btn {
  background: #F5F1ED;
  color: #256540;
  border: 1px solid #256540;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #7BC67E;
  color: #256540;
  transform: translateY(-2px);
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #E8ECDA;
  color: #256540;
  border-color: #7BC67E;
}
@media (max-width:670px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
    padding: 16px 6px 15px 11px;
    font-size: 0.98rem;
  }
}
/* ==================== COOKIE MODAL ==================== */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(37,101,64,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 23px 23px 44px 23px;
  box-shadow: 0 7px 42px rgba(39,82,46,0.13);
  max-width: 450px;
  padding: 38px 30px 24px 30px;
  z-index: 4050;
  color: #263A27;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 27px;
  animation: modalFadeIn 0.33s cubic-bezier(.62,0,.23,1);
}
@keyframes modalFadeIn {
  from { transform: scale(0.915) translateY(36px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.29rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #256540;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-switch {
  width: 39px;
  height: 21px;
  position: relative;
  display: inline-block;
}
.cookie-modal .cookie-switch input {
  opacity: 0; width: 0; height: 0; position: absolute; pointer-events: none;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #E8ECDA;
  border-radius: 13px;
  transition: background 0.16s;
}
.cookie-modal .cookie-switch input:checked + .slider {
  background-color: #7BC67E;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  left: 3.5px;
  top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.18s cubic-bezier(.42,0,.23,1);
  box-shadow: 0 1px 2px rgba(79,150,94,0.11);
}
.cookie-modal .cookie-switch input:checked + .slider:before {
  transform: translateX(17px);
}
.cookie-modal .category-title {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #256540;
  font-size: 1.04rem;
  font-weight: 600;
}
.cookie-modal .cookie-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 19px;
}
.cookie-modal .cookie-btn, .cookie-modal .cookie-settings-btn {
  margin: 0; padding: 10px 20px;
  font-size: 0.98rem;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  border: none;
  background: none;
  color: #256540;
  font-size: 1.49rem;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E8ECDA;
}
@media (max-width:520px) {
  .cookie-modal {
    max-width: 99vw;
    padding: 20px 7px 18px 7px;
  }
}
/* =================== RESPONSIVE BREAKPOINTS =================== */
@media (max-width:600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1.01rem; }
  .section, .about, .info, .faq, .newsletter, .contact, .confirmation {
    padding: 20px 5px;
    margin-bottom: 32px;
  }
  .card, .feature, .testimonial-card {
    padding: 15px 7px;
    margin-bottom: 14px;
  }
}
/* ==================== Utility & Misc. ==================== */
::-webkit-input-placeholder { color: #264933; opacity: .45; }
::-moz-placeholder { color: #264933; opacity: .45; }
:-ms-input-placeholder { color: #264933; opacity: .45; }
::placeholder { color: #264933; opacity: .45; }
[tabindex]:focus { outline: 2px solid #7BC67E; }

/* Subtle card/section hover interaction */
.card:hover, .card:focus-within {
  box-shadow: 0 6px 29px rgba(39,82,46,0.13);
  transform: translateY(-2px) scale(1.017);
}

/* Animate .cta-btn and .feature on hover for organic movement */
.cta-btn {
  will-change: transform;
}
.cta-btn:active {
  transform: scale(0.97);
}

/* Organic accent dots or leaves for visual flavor (can be set as pseudo-elements later) */

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