/* ========================
   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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #263238;
  background: #F4F7EF;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: #245431;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7CB342;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1c3b2a;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 20px; }
h2 { font-size: 1.625rem; font-weight: 600; margin-bottom: 16px; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
h4, h5, h6 { font-weight: 500; margin-bottom: 8px; }
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #263238;
}
strong { font-weight: 700; }
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44, 79, 66, 0.06);
}
.container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 820px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  section, .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}
/* ========================
   HEADER & NAVIGATION
=========================== */
header {
  background: #fff;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 99;
  box-shadow: 0 2px 8px rgba(44, 79, 66, 0.05);
  border-bottom: 1px solid #e5ebe2;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  max-height: 44px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
header nav a {
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.18s;
  color: #245431;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
header nav a:hover, header nav a:focus {
  background: #e9f5de;
  color: #245431;
}
.cta-btn {
  background: #245431;
  color: #fff !important;
  font-weight: bold;
  letter-spacing: 0.06em;
  border: none;
  padding: 11px 28px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(44, 79, 66, 0.06);
  transition: background 0.18s, transform 0.14s;
  cursor: pointer;
  display: inline-block;
  margin-left: 12px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #388e3c;
  color: #fff;
  transform: translateY(-1px) scale(1.05);
}
/* =============
MOBILE NAVIGATION
=============== */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 1px solid #245431;
  color: #245431;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  z-index: 102;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #e9f5de;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0;
  width: 88vw;
  max-width: 370px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(36,84,49,.09);
  z-index: 2005;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.66,.04,.39,1.01);
  padding: 32px 26px 28px 22px;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #245431;
  font-size: 2.3rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 14px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}
.mobile-nav a {
  font-size: 1.13rem;
  letter-spacing: 0.01em;
  padding: 11px 0;
  color: #245431;
  border-bottom: 1px solid #e5ebe2;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e9f5de;
  color: #1c3b2a;
  border-radius: 6px;
}
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}
/* ========================
        HERO SECTION
=========================== */
.hero-section {
  background: linear-gradient(120deg, #F4F7EF 70%, #eaf6e5 100%);
  box-shadow: none;
  padding-top: 44px;
  padding-bottom: 38px;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  background: none;
}
.hero-section h1 {
  font-size: 2.7rem;
  color: #245431;
}
.hero-section p {
  font-size: 1.15rem;
  color: #365841;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .hero-section {
    padding-top: 18px;
    padding-bottom: 12px;
  }
  .hero-section h1 { font-size: 2rem; }
  .hero-section .cta-btn { margin-top: 8px; }
}
/* =======================
      FEATURES & SERVICES
========================== */
.features-section, .services-section {
  background: #fff;
}
.features-section ul, .services-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-section ul li, .services-section ul li, .benefits-section ul li, .products-section ul li {
  background: #F4F7EF;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(44, 79, 66, 0.05);
  padding: 24px 20px 20px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  max-width: 335px;
  font-size: 1.06rem;
  position: relative;
  transition: box-shadow .18s, transform .17s;
}
.features-section ul li:hover, .services-section ul li:hover,
.benefits-section ul li:hover, .products-section ul li:hover {
  box-shadow: 0 6px 32px rgba(36, 84, 49, .10);
  transform: translateY(-3px) scale(1.02);
}
.features-section ul li img,
.services-section ul li img {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-bottom: 5px;
}
.features-section ul li span,
.services-section ul li p,
.benefits-section ul li {
  font-size: 0.98rem;
  color: #47614e;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-item {
  background: #F4F7EF;
  border-radius: 10px;
  padding: 28px 20px 20px 20px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 215px;
  box-shadow: 0 2px 8px rgba(36, 84, 49, .05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .17s;
}
.service-item:hover {
  box-shadow: 0 8px 36px rgba(36, 84, 49, 0.13);
  transform: translateY(-3px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 950px) {
  .features-section ul, .services-section ul, .service-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .features-section ul li, .services-section ul li, .service-item {
    min-width: unset;
    max-width: 100%;
    padding: 18px 11px 16px 11px;
  }
}
/* ========================
      CARDS & GRID FLEX
=========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(44, 79, 66, 0.07);
  transition: box-shadow .18s, transform .12s;
  position: relative;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(36, 84, 49, 0.11);
  transform: translateY(-3px);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 21px;
  gap: 16px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
/* ========================
       TESTIMONIALS
=========================== */
.testimonial-section {
  background: #F4F7EF;
  box-shadow: none;
  border-radius: 12px;
  margin-bottom: 48px;
  padding: 36px 18px;
}
.testimonial-section h2 {
  color: #245431;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 20px 32px;
  margin-bottom: 22px;
  background: #fff;
  color: #1c3b2a;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(36,84,49,0.08);
  border-left: 6px solid #7CB342;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: box-shadow 0.14s;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #345547;
  margin-bottom: 0;
}
.testimonial-card footer {
  font-size: 0.98rem;
  color: #7CB342;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 0;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(36,84,49,0.13);
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 16px 10px;
  }
}
/* ========================
          BLOG
=========================== */
.blog-list-section article {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(36, 84, 49, 0.07);
  margin-bottom: 22px;
  padding: 26px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.17s, transform 0.1s;
}
.blog-list-section article:hover {
  box-shadow: 0 8px 32px rgba(36, 84, 49, 0.11);
  transform: translateY(-2px);
}
.blog-list-section h2 {
  margin-top: 0;
}
.blog-list-section p small {
  color: #8da08b;
  font-size: 0.93rem;
}
.categories-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.categories-section ul li a {
  display: inline-block;
  background: #F4F7EF;
  color: #245431;
  border-radius: 8px;
  padding: 9px 20px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  box-shadow: 0 2px 6px rgba(44, 79, 66, 0.05);
  transition: background 0.17s, color 0.14s;
}
.categories-section ul li a:hover, .categories-section ul li a:focus {
  background: #e9f5de;
  color: #1c3b2a;
}
@media (max-width: 700px) {
  .blog-list-section .content-wrapper, .categories-section .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .categories-section ul {
    flex-direction: column;
  }
}
/* ========================
         FAQ SECTION
=========================== */
.faq-section dl {
  width: 100%;
  margin-bottom: 0;
}
.faq-section dt {
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 4px;
  color: #245431;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
}
.faq-section dd {
  margin-left: 0;
  margin-bottom: 10px;
  color: #365841;
  font-size: 1.01rem;
}
.tip-highlight {
  background: #e9f5de;
  border-left: 5px solid #7CB342;
  color: #245431;
  border-radius: 5px;
  padding: 13px 16px;
  margin: 14px 0 0 0;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
/* ========================
        CONTACT SECTION
=========================== */
.contact-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.contact-section ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 1.03rem;
}
.contact-section ul img {
  width: 22px;
  height: 22px;
}
/* ========================
          FOOTER
=========================== */
footer {
  background: #245431;
  color: #fff;
  margin-top: 60px;
}
footer .container {
  padding-top: 38px;
  padding-bottom: 34px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 34px;
  align-items: flex-start;
}
.footer-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-main img {
  height: 40px; width: auto;
}
.footer-main nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-main nav a {
  color: #f4f7ef;
  opacity: 0.85;
  letter-spacing: .008em;
  font-size: 0.97rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.14s, color 0.13s;
}
.footer-main nav a:hover, .footer-main nav a:focus {
  background: #7CB342;
  color: #245431;
  opacity: 1;
}
.footer-contact {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #eaf3e6;
}
.footer-contact a {
  color: #7CB342;
  text-decoration: underline;
  font-weight: 400;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
}
@media (max-width: 880px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}
@media (max-width: 700px) {
  footer .container {
    padding-top: 18px;
    padding-bottom: 14px;
  }
}
/* ============================
       COOKIE CONSENT BANNER
============================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid #e9f5de;
  color: #263238;
  box-shadow: 0 -3px 18px rgba(44,79,66,0.10);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 22px 14px;
  z-index: 3200;
  animation: cookieSlideUp 0.5s cubic-bezier(.66,.04,.39,1.01);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0;}
  to   { transform: translateY(0); opacity: 1;}
}
.cookie-banner__text {
  flex: 2 1 225px;
  font-size: 1.06rem;
  line-height: 1.6;
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  background: #F4F7EF;
  color: #245431;
  border: 1px solid #7CB342;
  border-radius: 22px;
  padding: 9px 28px;
  font-weight: bold;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.13s, color 0.13s, border-color 0.13s;
}
.cookie-btn.accept {
  background: #245431;
  color: #fff;
  border: 1px solid #245431;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #7CB342; color: #245431;
  border-color: #7CB342;
}
.cookie-btn.reject {
  background: #fff; color: #245431;
  border-color: #7CB342;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f2f9ea;
  color: #1c3b2a;
}
.cookie-btn.settings {
  background: #7CB342;
  color: #fff;
  border: 1px solid #7CB342;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #245431;
  color: #fff;
  border-color: #245431;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px 8px;
    font-size: 0.98rem;
  }
  .cookie-banner__buttons {
    justify-content: flex-start;
  }
}
/* ============================
       COOKIE PREFERENCES MODAL
============================ */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3210;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40,60,48,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .3s cubic-bezier(.66,.04,.39,1.01);
}
@keyframes fadeIn {
  from {opacity: 0;} to {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 44px rgba(36,84,49,0.19);
  padding: 38px 26px 32px 26px;
  max-width: 440px;
  min-width: 270px;
  width: 94vw;
  color: #1c3b2a;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalAppear .36s cubic-bezier(.66,.04,.39,1.01);
  position: relative;
}
@keyframes modalAppear {
  from {transform: translateY(40px) scale(.95); opacity: 0;}
  to {transform: none; opacity: 1;}
}
.cookie-modal-title {
  font-size: 1.36rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 7px;
}
.cookie-close-modal {
  position: absolute;
  top: 17px;
  right: 18px;
  background: none;
  border: none;
  color: #245431;
  font-size: 1.9rem;
  cursor: pointer;
  transition: color .15s;
}
.cookie-close-modal:hover, .cookie-close-modal:focus{
  color: #7CB342;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 7px;
}
.cookie-category label {
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #e9f5de;
  border-radius: 13px;
  position: relative;
  margin-right: 7px;
  transition: background .17s;
  display: inline-block;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  border-radius: 50%;
  width: 17px; height: 17px;
  top: 2.5px;
  left: 2.5px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(44,79,66,0.08);
  transition: left .17s, background .14s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 18px;
  background: #7CB342;
}
.cookie-category.essential .cookie-toggle {
  opacity: 0.55;
  pointer-events: none;
}
.cookie-category.essential label::after {
  content: ' (immer aktiv)';
  color: #7CB342; font-weight: 400; margin-left: 4px; font-size: 0.98em;
}
.cookie-modal-save {
  margin-top: 11px;
  padding: 10px 24px;
  background: #245431;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: background .15s, color .13s;
}
.cookie-modal-save:hover, .cookie-modal-save:focus{
  background: #7CB342;
  color: #245431;
}
@media (max-width: 500px) {
  .cookie-modal {padding: 24px 6px 18px 12px; max-width:98vw;}
}
/* ========================
    LEGAL & THANK-YOU
=========================== */
.legal-section, .thank-you-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44, 79, 66, 0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal-section h1, .thank-you-section h1 {
  color: #245431;
  margin-top: 0;
  margin-bottom: 16px;
}
.legal-section ul {
  margin-top: 12px;
  margin-bottom: 16px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-section li {
  margin-bottom: 6px;
  color: #365841; 
}
@media (max-width: 800px) {
  .legal-section, .thank-you-section {
    padding: 21px 8px;
    margin-bottom: 36px;
  }
}
/* ==========================
    MISC/UTILITY & BUTTONS
=========================== */
button, .btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  padding: 9px 22px;
  background: #7CB342;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background .16s, color .13s, box-shadow .14s;
  box-shadow: 0 2px 10px rgba(124, 179, 66, 0.08);
  margin-top: 7px;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: #245431; color: #fff;
  outline: none;
}
::-webkit-input-placeholder { color: #789262; }
::-moz-placeholder { color: #789262; }
:-ms-input-placeholder { color: #789262; }
::placeholder { color: #789262; }

/* ==========================
      RESPONSIVE MEDIA
============================ */
@media (max-width: 520px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.08rem; }
  section, .section, .legal-section, .thank-you-section { padding: 6px 0 12px 0; }
  .container { padding-left: 4px; padding-right: 4px; }
}
