/* 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F3FAF4;
  color: #2C5732;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2C5732;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #C3D825;
  outline-offset: 2px;
}
a:hover {
  color: #C3D825;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
}
th {
  background: #E8F4E8;
  font-weight: 700;
  text-align: left;
}
td {
  background: #fff;
}
::-webkit-scrollbar {
  width: 10px;
  background: #F3FAF4;
}
::-webkit-scrollbar-thumb {
  background: #C3D825;
  border-radius: 8px;
}
::-webkit-input-placeholder { color: #96ad95; }
::-moz-placeholder { color: #96ad95; }
:-ms-input-placeholder { color: #96ad95; }
::placeholder { color: #96ad95; }

/* ---------- TYPOGRAPHY SCALE ---------- */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #2C5732;
  letter-spacing: -1px;
  line-height: 1.13;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2C5732;
  line-height: 1.2;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.38rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2C5732;
}
h4{
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  margin-bottom: 8px;
}
p, li, td, th {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #2C5732;
}
.subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #33673B;
  margin-bottom: 26px;
  letter-spacing: 0.2px;
}
strong {
  font-weight: 700;
  color: #33673B;
}

/* Containers and Layouts (Flexbox only) */
.container {
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}
header .container, footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 830px;
  margin: 0 auto;
  padding: 0 10px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 24px 0 rgba(44,87,50,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  padding: 32px 28px 28px 28px;
  flex: 1 1 350px;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(195,216,37,0.25);
  transform: translateY(-4px) scale(1.01);
  z-index: 2;
}
.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;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px 28px;
  margin-bottom: 24px;
  border-radius: 18px;
  box-shadow: 0 3px 24px 0 rgba(44,87,50,0.08);
  position: relative;
}
.testimonial-card p {
  font-size: 1.11rem;
  font-weight: 600;
  color: #2C5732;
  margin-bottom: 0;
}
.testimonial-card cite {
  font-size: 0.97rem;
  font-style: normal;
  color: #33673B;
  font-weight: 700;
  margin-left: auto;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(44,87,50,0.06);
  padding: 18px 22px;
}

/* Main Navigation */
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 30px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 7px 8px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  background: #C3D825;
  color: #2C5732;
}

.cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: inline-flex;
  align-items: center;
  background: #C3D825;
  color: #2C5732;
  padding: 13px 32px;
  font-size: 1.15rem;
  font-weight: 800;
  border: none;
  border-radius: 34px;
  box-shadow: 0 3px 16px 0 rgba(44,87,50,0.15);
  margin-left: 20px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #33673B;
  color: #fff;
  box-shadow: 0 5px 24px 0 rgba(44,87,50,0.24);
  outline: none;
  transform: translateY(-3px) scale(1.04);
}

/* Hamburger & Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: #C3D825;
  color: #2C5732;
  font-size: 2.1rem;
  border: none;
  border-radius: 9px;
  padding: 7px 18px;
  margin-left: 18px;
  box-shadow: 0 2px 10px 0 rgba(44,87,50,0.18);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.2s;
  z-index: 1040;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #33673B;
  color: #fff;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F3FAF4;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.92,.06,.7,.97);
  box-shadow: 0 1px 40px 0 rgba(44,87,50,0.25);
  padding-top: 44px;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: #C3D825;
  color: #2C5732;
  font-size: 2rem;
  border: none;
  border-radius: 14px;
  padding: 6px 17px 8px 17px;
  z-index: 1150;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(44,87,50,0.09);
  transition: background 0.18s, color 0.18s, transform 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #33673B;
  color: #fff;
  outline: none;
  transform: scale(1.13);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding: 60px 34px 20px 34px;
  height: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #2C5732;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  text-align: left;
  width: 100%;
  transition: color 0.18s, border-bottom 0.18s, background 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #33673B;
  border-bottom: 2px solid #C3D825;
  background: #e7f8ea;
}

/* FOOTER */
footer {
  background: #2C5732;
  padding: 32px 0 0 0;
  color: #fff;
}
footer .container {
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.2s;
  padding: 4px 7px;
  border-radius: 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #C3D825;
  background: rgba(195,216,37,0.07);
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  color: #deeeda;
}
.footer-contact img {
  width: 36px;
  height: 36px;
}
.footer-copy {
  border-top: 1px solid #385147;
  margin-top: 10px;
  padding-top: 12px;
  color: #b0d2b2;
  font-size: 0.98rem;
  text-align: center;
}

/* TABLES */
table {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
}
th, td {
  border-bottom: 1px solid #e2e7e2;
}
thead th {
  background: #C3D825;
  color: #2C5732;
  font-size: 1.13rem;
}

/* Generic Content Cards */
.team-bio {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  margin-bottom: 18px;
  font-size: 1rem;
  box-shadow: 0 2px 12px 0 rgba(44,87,50,0.07);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Info lists with icons */
ul > li img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}
ul > li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

/* FAQ, knowledge, and notable sections */
section ul > li {
  margin-bottom: 20px;
  font-size: 1.08rem;
  padding-left: 0;
  position: relative;
  font-weight: 500;
}
section ul > li:last-child { margin-bottom: 0; }

/* UTILS */
.hide { display: none !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.gap-20 { gap: 20px; }

/* GEO SHAPES / BOLD VISUALS */
.section {
  position: relative;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  left: -50px;
  top: 38px;
  width: 70px;
  height: 70px;
  background: #C3D825;
  opacity: 0.12;
  border-radius: 17px 80px 46px 60px;
  z-index: 0;
  pointer-events: none;
}
.section:nth-child(even):before {
  left: auto;
  right: -60px;
  top: 82px;
  width: 90px;
  height: 56px;
  border-radius: 51px 41px 77px 18px;
}
.section .container, .section .content-wrapper {
  position: relative;
  z-index: 2;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #2C5732;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  box-shadow: 0 -4px 28px 0 rgba(44,87,50,0.18);
  padding: 24px 18px 24px 36px;
  z-index: 1490;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s, transform 0.28s;
  transform: translateY(80px);
  font-size: 1.04rem;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner-text {
  flex: 2 1 300px;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  border: none;
  border-radius: 26px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn.accept {
  background: #C3D825;
  color: #2C5732;
}
.cookie-btn.reject {
  background: #fff;
  color: #2C5732;
  border: 2px solid #C3D825;
}
.cookie-btn.settings {
  background: #33673B;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #33673B;
  color: #fff;
  outline: none;
}
.cookie-btn.reject:hover {
  background: #C3D825;
  color: #2C5732;
}

/* Cookie Consent Modal */
.cookie-modal-overlay {
  position: fixed;
  top:0;left:0; width:100vw; height:100vh;
  background: rgba(44,87,50,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 40px 0 rgba(44,87,50,0.16);
  max-width: 420px;
  padding: 36px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
}
.cookie-modal h3 {
  color: #2C5732;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 700;
  color: #33673B;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 14px;
  background: #e8f5e3;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-toggle:checked {
  background: #C3D825;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 rgba(44,87,50,0.11);
  transform: translateX(0);
  transition: transform 0.18s;
}
.cookie-toggle:checked:before {
  transform: translateX(15px);
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal-actions .cookie-btn {
  font-size: 1.05rem;
  padding: 10px 18px;
}

/* INTERACTIONS AND TRANSITIONS */
.card, .team-bio, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .team-bio:hover, .testimonial-card:hover {
  box-shadow: 0 7px 38px 0 rgba(195,216,37,0.18);
  transform: scale(1.015) translateY(-2px);
  z-index: 4;
}

button, .cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.17s;
}

/* MEDIA/RESPONSIVE */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .main-nav {
    gap: 18px;
  }
  .content-wrapper {
    padding: 0 2px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 13px;
  }
  .footer-nav {
    gap: 17px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 3px;
    align-items: flex-start;
  }
}
@media (max-width: 820px) {
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .section {
    padding: 30px 5px;
  }
}
@media (max-width: 800px) {
  header .container {
    flex-direction: row;
    gap: 0;
  }
  .footer-nav {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .content-wrapper {
    max-width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }
  .testimonial-card {
    padding: 17px 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  .testimonial-card cite {
    margin-left: 0;
    margin-top: 2px;
  }
  .section {
    padding: 22px 3px;
    margin-bottom: 38px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 550px) {
  h1, .h1 {
    font-size: 1.55rem;
    margin-bottom: 12px;
  }
  h2, .h2 {
    font-size: 1.22rem;
    margin-bottom: 10px;
  }
  h3, .h3 {
    font-size: 1.06rem;
  }
  .container {
    padding: 0 3px;
  }
  .section {
    padding: 8px 1px 27px 1px;
    margin-bottom: 24px;
  }
  .card, .team-bio {
    padding: 14px 7px;
  }
  .cookie-banner {
    flex-direction: column;
    padding: 15px 8px 18px 10px;
    gap: 12px;
    font-size: 0.98rem;
  }
  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
}

/* ********* UTIL: Ensure proper spacing between cards/sections ********* */
section + section, .section + .section {
  margin-top: 16px;
}
.card-container > * {
  margin-bottom: 0 !important;
}

.testimonial-card:not(:last-child) {
  margin-bottom: 24px;
}
.card:not(:last-child) {
  margin-bottom: 20px;
}
.feature-item:not(:last-child) {
  margin-bottom: 20px;
}
.content-grid > * {
  margin-bottom: 0 !important;
}

/* ********* HIGH CONTRAST FOR TESTIMONIALS ********* */
.testimonial-card {
  background: #fff !important;
  color: #2C5732 !important;
  box-shadow: 0 3px 18px 0 rgba(44,87,50,0.11);
}
.testimonial-card p, .testimonial-card cite {
  color: #2C5732 !important;
}

/* ********* GEOMETRIC BADGE (for extra bold) ********* */
.badge {
  background: #C3D825;
  color: #2C5732;
  padding: 6px 18px;
  border-radius: 23px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 6px;
  box-shadow: 0 1px 7px 0 rgba(195,216,37,0.12);
}

/* Form Elements (for kontakt.html) */
input, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid #C3D825;
  background: #fff;
  color: #2C5732;
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 16px;
  width: 100%;
  transition: border 0.19s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #33673B;
}
button:active { transform: scale(0.97); }

/* Hide scroll on mobile menu when open */
body.mobile-menu-open {
  overflow: hidden;
  height: 100vh;
}
