/* --- CSS RESET & NORMALIZATION --- */
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F7F6F2; /* Soft earth tone */
  font-family: 'Open Sans', Arial, sans-serif;
  color: #233524;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #204072;
  transition: color .2s;
}
a:focus {
  outline: 2px solid #F2B93B;
  outline-offset: 2px;
}

/* --- BRAND TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #204072;
  font-weight: 700;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.21rem;
  margin-bottom: 14px;
  color: #357a38;
}

section h2 {
  color: #357a38;
}

p, li, label, em, strong, small {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #233524;
  line-height: 1.7;
}
strong {
  font-weight: bold;
}
small {
  font-size: 0.88rem;
  color: #7A7869;
}

em {
  font-style: italic;
  color: #39705a;
}

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(56, 89, 65, 0.13);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow .32s, transform .18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(34, 53, 36, 0.20);
  transform: translateY(-2px) scale(1.015);
}

.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: #F8F5ED;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(102, 131, 89, 0.08);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 510px;
  transition: box-shadow 0.2s, border 0.2s;
  border: 1.5px solid #E1E8EC;
}
.testimonial-card strong {
  color: #204072;
}
.testimonial-card span {
  color: #F2B93B;
  font-size: 1.1rem;
  font-family: inherit;
  letter-spacing: 0.07em;
}
.testimonial-card p {
  color: #233524;
  font-size: 1.01rem;
}
.testimonial-card:focus-within {
  border-color: #F2B93B;
}

.feature-item, .features ul li, .features ol li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1rem;
}
.features ul li img {
  width: 36px;
  height: 36px;
  margin-right: 12px;
  vertical-align: middle;
  display: inline-block;
  filter: hue-rotate(-22deg) saturate(0.7);
  /* green accent effect */
}
.features ul {
  padding-left: 0;
}
.features ul li, .features ol li {
  padding: 16px 14px;
  border-radius: 14px 32px 26px 12px/22px 22px 32px 8px; /* organic curves */
  background: #F5F9F6;
  box-shadow: 0 2px 8px rgba(102, 120, 89, 0.06);
  margin-bottom: 18px;
  border-left: 5px solid #76B852;
  transition: background 0.22s, border-color 0.2s;
}
.features ul li:hover {
  background: #E6F1E0;
  border-left-color: #357a38;
}
.features ol {
  margin-bottom: 20px;
}
.features ol li {
  border-left: 5px solid #F2B93B;
  background: #fdf5e1;
}
.features ol li strong {
  color: #357a38;
}
.features h2 {
  margin-top: 0;
}

.text-section {
  margin-bottom: 22px;
  line-height: 1.7;
  color: #233524;
}
.text-section ul {
  margin-top: 12px;
}
.text-section li {
  margin: 0 0 9px 0;
  padding-left: 0;
  font-size: 1rem;
}
.text-section a {
  color: #204072;
  word-break: break-all;
}

/* --- HERO SECTIONS --- */
.hero {
  background: linear-gradient(90deg, rgba(230,241,224,1) 0%, rgba(225,232,236,1) 100%);
  border-radius: 0 0 70px 24px / 0 0 64px 32px;
  box-shadow: 0 4px 32px rgba(68, 95, 56, 0.09);
  padding: 48px 0 32px 0;
  margin-bottom: 40px;
}
.hero .container {
  align-items: flex-start;
}
.hero h1 {
  color: #357a38;
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.18rem;
  color: #4A6045;
  margin-bottom: 28px;
}

/* --- BUTTONS --- */
.cta-btn, .cookie-banner-btn, .mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #357a38;
  color: #fff;
  border: none;
  border-radius: 24px 48px 16px 42px/32px 28px 28px 34px;
  padding: 13px 38px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(45, 56, 38, 0.11);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform .18s;
}
.cta-btn:hover, .cookie-banner-btn:hover, .cta-btn:focus {
  background: #76B852;
  color: #204072;
  box-shadow: 0 5px 24px rgba(34, 53, 36, 0.13);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}
.cta-btn:active {
  background: #39705a;
  color: #fff;
}

/* --- NAVIGATION --- */
header {
  background: #DDE5DB;
  padding: 0;
  border-bottom: 2.5px solid #E1E8EC;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 24px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #204072;
  padding: 7px 13px;
  border-radius: 24px 30px 15px 18px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #357a38;
  color: #fff;
  outline: none;
}
header .cta-btn {
  margin-left: 20px;
  font-size: 1rem;
}
a.cta-btn {
  color: #E1E8EC;
}

/* --- MOBILE MENU (HAMBURGER NAV) --- */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #357a38;
  padding: 0;
  margin-left: 14px;
  border-radius: 50%;
  transition: background 0.2s;
  z-index: 160;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E6F1E0;
  outline: none;
}
.mobile-menu {
  position: fixed;
  inset: 0 0 0 0;
  background: rgba(34,47,24, 0.94);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.4,.08,.27,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2rem;
  margin: 26px 24px 8px 0;
  border: none;
  cursor: pointer;
  padding: 0;
}
.mobile-menu-close:hover {
  color: #F2B93B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 30px 0 0 0;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 16px 32px 10px 38px;
  border-radius: 0 40px 40px 0 / 0 40px 15px 0;
  min-width: 210px;
  background: none;
  transition: background 0.13s, color 0.12s, padding 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #357a38;
  color: #F2B93B;
}

/* Hide hamburger on desktop, show on mobile */
@media (min-width: 980px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 979px) {
  .main-nav, header .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* --- FOOTER --- */
footer {
  background: #233524;
  padding: 36px 0 20px 0;
  margin-top: 60px;
  color: #fff;
}
footer .container {
  flex-direction: column;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #E1E8EC;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 16px;
  transition: background 0.17s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #357a38;
  color: #fff;
}
footer small {
  color: #E1E8EC;
}


/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1100px) {
  .container { max-width: 920px; }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; }
}
@media (max-width: 768px) {
  .section { padding: 32px 8px; margin-bottom: 42px; }
  .hero { padding: 28px 0 14px 0; border-radius: 0 0 36px 24px/0 0 36px 24px; }
  .testimonial-card { max-width: 100%; }
  .features ul li, .features ol li { font-size: 0.99rem; }
}
@media (max-width: 700px) {
  .hero h1 { font-size: 1.52rem; }
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.14rem; }
  h3 { font-size: 1.01rem; }
  .container { padding: 0 5px; }
  .footer-nav { gap: 12px; }
}
@media (max-width: 600px) {
  .content-wrapper, .features .content-wrapper {
    gap: 17px;
  }
  .hero { padding: 18px 0 10px 0; }
}
@media (max-width: 540px) {
  header .container { flex-wrap: wrap; gap: 8px; padding: 12px; }
  .mobile-menu-close { margin: 12px 12px 4px 0; font-size: 1.5rem; }
  .mobile-nav a { font-size: 1.07rem; padding: 12px 18px 8px 18px; }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: stretch; gap: 14px; }
  .content-grid { flex-direction: column; gap: 14px; }
}

/* --- CTA SECTIONS --- */
.cta {
  background: #E6F1E0;
  border-radius: 32px 62px 20px 44px/40px 48px 28px 32px;
  padding: 36px 0 28px 0;
  margin-bottom: 32px;
  box-shadow: 0 2px 20px rgba(34, 53, 36, 0.07);
}
.cta h2 {
  color: #357a38;
}

/* --- ORGANIC CARD / LIST STYLE --- */
.services ul, .services ol {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
  padding-left: 0;
}
.services ul li, .services ol li {
  background: #fffbe9;
  border-radius: 28px 16px 32px 14px/20px 36px 10px 26px;
  box-shadow: 0 2px 10px rgba(242, 185, 59, 0.10);
  padding: 18px 18px 18px 20px;
  margin-bottom: 4px;
  border-left: 5px solid #F2B93B;
}
.services ul li strong, .services ol li strong {
  color: #204072;
}
.services ul li h3 {
  color: #357a38;
  font-size: 1.09rem;
  margin-bottom: 8px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 5000;
  background: #E6F1E0;
  box-shadow: 0 -2px 24px rgba(34, 53, 36, 0.13);
  padding: 22px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  animation: banner-slideup 0.45s cubic-bezier(.4, .13, .23, 1.07);
}
@keyframes banner-slideup {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner-content {
  flex: 1 1 auto;
  color: #233524;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner-btn {
  min-width: 110px;
  font-size: 0.97rem;
  padding: 10px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #357a38;
  color: #fff;
  border: none;
  border-radius: 24px 40px 22px 34px/28px 19px 23px 23px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.23s, outline 0.13s;
}
.cookie-banner-btn:focus {
  outline: 2px solid #F2B93B;
}
.cookie-banner-btn.accept {
  background: #357a38;
}
.cookie-banner-btn.accept:hover {
  background: #76B852;
  color: #204072;
}
.cookie-banner-btn.reject {
  background: #204072;
}
.cookie-banner-btn.reject:hover {
  background: #F2B93B;
  color: #204072;
}
.cookie-banner-btn.settings {
  background: #F2B93B;
  color: #204072;
}
.cookie-banner-btn.settings:hover {
  background: #76B852;
  color: #fff;
}

/* --- COOKIE MODAL POPUP --- */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0 0 0 0;
  background: rgba(34,47,24,0.32);
  z-index: 5050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 92vw;
  max-width: 410px;
  min-width: 240px;
  background: #F8F5ED;
  border-radius: 30px 60px 26px 48px/40px 38px 38px 18px;
  padding: 34px 30px 28px 30px;
  box-shadow: 0 8px 35px rgba(34, 53, 36, 0.16);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translate(-50%, -54%) scale(0.92);
  opacity: 0;
  z-index: 5200;
  pointer-events: none;
  transition: opacity .24s, transform .34s cubic-bezier(.46,.04,.23,1.12);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -54%) scale(1);
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  color: #204072;
  margin-bottom: 3px;
  font-weight: 700;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
  gap: 14px;
}
.cookie-modal-category label {
  flex: 1;
  font-size: 1rem;
  color: #357a38;
}
.cookie-modal-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #357a38;
  border-radius: 50%;
  border: 1.5px solid #76B852;
  margin-right: 8px;
  cursor: pointer;
}

.cookie-modal-category input[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
}

/* --- UTILITIES --- */
.organic-bg {
  background: #E6F1E0;
  border-radius: 36px 60px 18px 30px / 32px 50px 24px 36px;
  box-shadow: 0 2px 14px rgba(102,120,89,0.065);
}
.organic-accent {
  background: #F2B93B;
  color: #204072;
  border-radius: 16px;
}

/* --- FORMS (Kontakt) --- */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px;
  border-radius: 14px;
  border: 1.5px solid #C7DBD4;
  background: #F7F6F2;
  color: #233524;
  margin-bottom: 18px;
  width: 100%;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #76B852;
}

button:focus {
  outline: 2px solid #F2B93B;
  outline-offset: 1px;
}

/* --- ADDITIONAL ORGANIC EFFECTS --- */
.card, .services ul li, .features ul li, .features ol li, .testimonial-card {
  box-shadow: 0 2px 8px rgba(110,113,92,0.10);
}

/* --- MISC. --- */
::-webkit-input-placeholder { color: #95aa99; }
::-moz-placeholder { color: #95aa99; }
:-ms-input-placeholder { color: #95aa99; }
::placeholder { color: #95aa99; }

/*********** TRANSITIONS & MICRO-INTERACTIONS ***********/
.card, .testimonial-card, .features ul li, .features ol li, .services ul li, .cta-btn,
.cookie-banner, .cookie-banner-btn, .mobile-menu-toggle,
footer .footer-nav a {
  transition: box-shadow 0.22s, background 0.19s, transform 0.11s, color 0.13s;
}
.testimonial-cards {
    display: flex;
    gap: 15px;
}
/*********** NO CSS GRID, FLEXBOX ONLY (IMPORTANT) ***********/
/* All layout containers already use display: flex and appropriate flex-wrap/flex-direction/gap/margin patterns. */
