/* === BASIS === */
:root {
  --gruen: #1F5D45;
  --dunkel-tuerkis: #091722;
  --helltuerkis: #3fc582;
  --hellgruen: #21bd81;
  --gold: #CBA135;
  --weiss: #ffffff;
  --dunkelgrau: #2E2E2E;
  --hover: #BFA24B;
}
/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v30-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* work-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/work-sans-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;

}
p, a, button, form, li, strong, span {
  font-family: 'Work Sans', sans-serif;
}
/* -------------------------------------------------------------------------------------------------------- */
/* ANIMATIONS */
/* -------------------------------------------------------------------------------------------------------- */
/* === BASIS === */
.scroll-animate {
  opacity: 0;
  transition: all 0.8s ease-out;
  will-change: opacity, transform;
}

/* 1. Fade-In (sichtbar werden) */
.fade-in {
  transform: none;
}
.scroll-animate.fade-in.in-view {
  opacity: 1;
}

/* 2. Slide-In from Left */
.slide-in-left {
  transform: translateX(-40px);
}
.scroll-animate.slide-in-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* 3. Slide-In from Right */
.slide-in-right {
  transform: translateX(40px);
}
.scroll-animate.slide-in-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* 4. Slide-In from Bottom (nach oben) */
.slide-in-up {
  transform: translateY(40px);
}
.scroll-animate.slide-in-up.in-view {
  opacity: 1;
  transform: translateY(0);
}


.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0px var(--helltuerkis);
  }
  50% {
    box-shadow: 0 0 12px var(--helltuerkis);
  }
  100% {
    box-shadow: 0 0 0px var(--helltuerkis);
  }
}


/* -------------------------------------------------------------------------------------------------------- */
/* === HEADER === */
/* -------------------------------------------------------------------------------------------------------- */
.site-header {
  background-color: rgba(9, 23, 34, 0.95);
  
  padding: 8px 0;
  display: flex;
  justify-content: space-between; /* Wichtig für Logo + Menü-Ausrichtung */
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.site-header button {
  background-color: transparent;
  border: none;
}
/* Logo bleibt links */
.logo img {
  height: 60px;
  width: auto; /* Bessere Skalierung */
  margin-left: 20px; /* Abstand vom linken Rand */
  position: relative;
  z-index: 200;
}

/* Menü zentrieren */
.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu-split {
  display: flex;
  align-items: center;
  gap: 1.2rem; /* Abstand zwischen Menüpunkten */
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-split li {
  position: relative;
}

.menu-split li a {
  font-family: 'Work Sans', sans-serif;
  text-decoration: none;
  color: var(--weiss);
  font-weight: 500;
  transition: 0.3s ease;
}

.menu-split li a:hover {
  color: var(--helltuerkis);
  text-shadow: 0 0 5px var(--helltuerkis);
}

.cta-middle a {
  border: 1px solid #236e49;  
  background: #236e49;
  color: white !important;
  padding: 0.5rem 1.4rem;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.blitz-button {
  position: relative;
  display: inline-block;
  background: var(--dunkel-tuerkis);
  color: white;
  padding: 0.5rem 1.4rem;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  overflow: hidden;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.blitz-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 150%;
  height: 200%;
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 0;
  transition: all 0.5s ease;
  filter: blur(10px);
}

.blitz-button:hover {
  background: var(--dunkel-tuerkis);
  border: 1px solid #3fc582;  
}


/* -------------------------------------------------------------------------------------------------------- */
/* === BURGER === */
/* -------------------------------------------------------------------------------------------------------- */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 10;
  gap: 5px;
}

.burger span {
  height: 3px;
  width: 25px;
  background: var(--weiss);
  transition: 0.3s ease;
  border-radius: 2px;
}

.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* -------------------------------------------------------------------------------------------------------- */
/* === RESPONSIVE (MOBILE) === */
/* -------------------------------------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .site-header {
    flex-wrap: wrap;
    /* padding: 1rem; */
    padding: 5px 10px;
    justify-content: space-between;
  }

  .header-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo img {
    height: 50px;
    margin-left: 0;
  }

  .burger {
    display: flex;
    padding: 0.5rem;
    transition: transform 0.3s ease;
  }

  .burger:hover span {
    background: var(--weiss);
  }

  .site-nav {
    width: 100%;
  }

  .site-nav ul {
    position: fixed;
    top: 32px;
    left: -5px;
    right: 0;
    /* background: rgba(9, 42, 49, 0.5);  */
    background-color: rgba(9, 23, 34, 0.5);
    backdrop-filter: blur(6px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 100;
    margin: 0;
    padding: 0;
    
  }

  .site-nav ul.active {
    transform: translateY(0);
    opacity: 1;
  }

  .site-nav ul li {
    width: 80%;
    text-align: center;
    padding: 1rem 0 2rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .site-nav ul li:last-child{
    border-bottom: none;
  }
  .site-nav ul.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav ul li a {
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .cta-middle a {
    background: #2f9461;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    border-radius: 50px;
  }
}
/* -------------------------------------------------------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------------------------------------------------------- */
.main-footer {
  background: var(--dunkel-tuerkis);
  color: white;
  padding: 3rem 1rem 2rem;
  font-family: 'Work Sans', sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-column img{
  width: 100px;
}
.footer-column h3,
.footer-column h4 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.5rem;
  color: var(--helltuerkis);
}

.footer-column p,
.footer-column a {
  font-size: 0.95rem;
  line-height: 1.5;
  color: white;
  text-decoration: none;
}
.footer-column a {
  border-bottom: 1px solid white;
}
.footer-column a:hover {
  color: #46dd91;
  border-bottom: 1px solid #46dd91;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.legal-links {
  margin-top: 0.5rem;
}

.legal-links a {
  color: var(--helltuerkis);
  text-decoration: none;
  margin: 0 0.3rem;
}

.legal-links a:hover {
  text-decoration: underline;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer-socials {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 1rem 0;
  text-align: center;
}

.footer-socials a {
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.footer-socials a:hover {
  transform: scale(1.1);
}

.footer-socials img {
  width: 30px;
  height: 30px;
}

/* -------------------------------------------------------------------------------------------------------- */
/* === HOMEPAGE === */
/* -------------------------------------------------------------------------------------------------------- */
.custom-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease; /* ist neu */
  transition: opacity 0.5s ease, visibility 0.5s ease; /* ist neu */
  visibility: hidden; /* ist neu */
}
.slide.active {
  opacity: 1;
  z-index: 1;
  visibility: visible; /* ist neu */
}
.slider-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  z-index: -1;
}
.slide-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 10px;
}
.slide-content h1 {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--weiss);
  font-weight: bolder;
  border-top: 1px solid #21bd81;
  border-bottom: 1px solid #21bd81;
  padding: 10px 0;
  text-transform: uppercase;
}


.slide-content h1 span {
  color: var(--hellgruen);
}
.slide-content p {
  font-size: 2rem;
  font-family: 'Work Sans', sans-serif;
  margin-bottom: 2rem;
  color: var(--weiss);
  padding: 20px 0;
}
.cta-button {
  background: var(--gruen);
  color: white;
  padding: 0.8rem 1.8rem;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--hellgruen);
  box-sizing: border-box;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.cta-button:hover::before {
  transform: scaleX(1);
}
.cta-button:hover {
  background: transparent;
  color: var(--hellgruen);
}
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none; /* Hintergrund entfernt */
  color: var(--hellgruen); /* Deine grüne Farbe */
  font-size: 3rem;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease;
}

.slider-prev:hover,
.slider-next:hover {
  transform: translateY(-50%) scale(1.2); /* leichter Hover-Effekt */
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 5;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background: white;
  opacity: 0.5;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-dot.active {
  background: var(--hellgruen);
  opacity: 1;
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--hellgruen);
}


@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 1.5rem;
  }
  .slide-content p {
    font-size: 1rem;
  }
  .slider-prev, .slider-next {
    opacity: 0;
    pointer-events: none;
  }

  .slider-dot {
    width: 9px;
    height: 9px;
  }
}

/* -------------------------------------------------------------------------------------------------------- */
/* HOMEPAGE | TRUSTSECTION */
/* -------------------------------------------------------------------------------------------------------- */
.trust-section {
  padding: 1rem 1rem 4rem 1rem;
  background-color: white;
  text-align: center;
}
.trust-section h2 {
  font-family: 'Montserrat', sans-serif;
  color: var(--gruen);
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;

}
.trust-section p {
  color: black;
}
.trust-highlights {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.trust-highlights .box {
  flex: 1 1 30%;
  background: white;
  padding: 2rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.trust-highlights .box:hover {
  transform: translateY(-5px);
}

.icon-img {
  width: 60px;
  height: auto;
  margin-bottom: 1rem;
}

.trust-highlights h3 {
  font-size: 1.2rem;
  color: var(--gruen);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.trust-highlights p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}
.slider-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


/* -------------------------------------------------------------------------------------------------------- */
/* HOMEPAGE | KUNDENREZENSIONEN */
/* -------------------------------------------------------------------------------------------------------- */
.testimonials {
  padding: 4rem 1rem 6rem 1rem;
  background: #f9f9f9;
  text-align: center;
}
.testimonials h2 {
  padding-bottom: 10px;
  font-size: 2rem;
  color: var(--hellgruen);
  text-transform: uppercase;
}
.testimonial-boxes {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.testimonial-boxes .box {
  background: #f4f4f4;
  border-left: 4px solid var(--hellgruen);
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 320px;
}

/* -------------------------------------------------------------------------------------------------------- */
/* HOMEPAGE | ABLAUF */
/* -------------------------------------------------------------------------------------------------------- */
.ablauf {
  padding: 4rem 1rem;
  background: white;
  text-align: center;
}
.ablauf h2 {
  color: var(--gruen);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;

}
.steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  background: white;
  border: 1px solid #ddd;
  padding: 2rem;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.step-number {
  display: inline-block;
  background: var(--gruen);
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 1rem;
}


/* -------------------------------------------------------------------------------------------------------- */
/* HOMEPAGE | EINSATZGEBIETE */
/* -------------------------------------------------------------------------------------------------------- */
.einsatzorte {
  padding: 4rem 1rem;
  text-align: center;
  background: #f9f9f9;

}
.einsatzorte h2 {
  font-size: 2rem;
  color: var(--hellgruen);
  text-transform: uppercase;

}
.orte-liste {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.orte-liste li {
  background: var(--gruen);
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 5px;
  font-weight: 500;
}

.einsatzorte p {
  color: black;
}

.border-btn {
  display: inline-block;
  background: transparent;
  color: var(--hellgruen);
  border: 2px solid var(--hellgruen);
  padding: 0.8rem 1.4rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.border-btn:hover {
  background: var(--hellgruen);
  color: white;
}
/* -------------------------------------------------------------------------------------------------------- */
/* HOMEPAGE | ANFRAGEN */
/* -------------------------------------------------------------------------------------------------------- */
.cta-termin {
  background: white;
  color: black;
  padding: 4rem 1rem;
  text-align: center;
}
.cta-termin h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;

}
.cta-termin p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}


/* -------------------------------------------------------------------------------------------------------- */
/* KONTAKT */
/* -------------------------------------------------------------------------------------------------------- */

.kontakt-section {
  background: white;
  color: var(--dunkelgrau);
  padding: 13rem 1rem 13rem 1rem;

}
.kontakt-section h1 {
  font-size: 2rem;
  color: var(--gruen);
}
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.kontakt-form input,
.kontakt-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Work Sans', sans-serif;
}
.kontakt-form textarea {
  resize: vertical;
}
.checkbox-label {
  font-size: 0.9rem;
}
.success-message {
  background: #e6ffed;
  border: 1px solid #28a745;
  color: #155724;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 5px;
}
.cta-button {
  cursor: pointer;
  border: none;
  background: var(--gruen);
  color: white;
}
.cta-button:hover {
  background: var(--hellgruen);
  color: white;
  transition: background 0.3s ease, color 0.3s ease;
}

@media (max-width: 768px) {
  .kontakt-section {
    padding: 6rem 1rem;
  }
}

/* -------------------------------------------------------------------------------------------------------- */
/* LEISTUNGEN */
/* -------------------------------------------------------------------------------------------------------- */
.leistungen-section {
  padding: 4rem 1rem;
  background: white;
  text-align: center;
}

.leistungen-section h1 {
  font-size: 2.2rem;
  color: var(--gruen);
  margin-bottom: 1rem;
  padding-top: 3rem;
  text-transform: uppercase;
}

.leistungen-section .intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--dunkelgrau);
  font-size: 1.1rem;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.leistung-box {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.349);
  transition: transform 0.3s ease;
}

.leistung-box:hover {
  transform: translateY(-5px);
}

.leistung-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.leistung-box h3 {
  font-size: 1.3rem;
  color: var(--gruen);
  margin-bottom: 0.5rem;
}

.leistung-box p {
  font-size: 1rem;
  color: var(--dunkelgrau);
}
.leistungen-cta {
  background: var(--hellgrau);
  padding: 4rem 1rem;
  text-align: center;
}
@media (max-width: 768px) {
  .leistungen-cta {
    padding: 0 1rem 5rem 1rem;
  }
}
/* -------------------------------------------------------------------------------------------------------- */
/* STANDORTE */
/* -------------------------------------------------------------------------------------------------------- */
.standorte-section {
  position: relative;
  padding: 19rem 1rem;
  background: none;
  text-align: center;
  overflow: hidden;
}
.standorte-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/slider-2-ort-768.jpg') center/cover no-repeat;
  filter: blur(5px) brightness(0.5);
  z-index: 0;
}
.standorte-section > * {
  position: relative;
  z-index: 1;
}
.standorte-section h1 {
  font-size: 2.2rem;
  color: var(--hellgruen);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.standorte-section .intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: white;
  font-size: 1.1rem;
}

.orte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 4rem;
  text-align: center;
}

.ort-box {
  background: white;
  color: var(--dunkelgrau);
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 0 6px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  font-family: 'Work Sans', sans-serif;
}

.ort-box:hover {
  transform: translateY(-4px);
}

/* CTA */
.standorte-cta {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.standorte-cta h2 {
  color: var(--gruen);
  margin-bottom: 0.5rem;
}

.standorte-cta p {
  margin-bottom: 1.5rem;
  color: var(--dunkelgrau);
}

.standorte-cta a {
  display: inline-block;
  font-size: 1rem;
  padding: 0.8rem 1.6rem;
  border-radius: 5px;
  background: var(--gruen);
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  transition: background 0.3s ease;
  word-break: break-word;
  white-space: normal;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
}
.standorte-cta a:hover {
  background: var(--hellgruen);
}
/* RESPONSIV */
@media (max-width: 768px) {
  .standorte-section {
    padding: 4rem 1rem;
    
  }

  .orte-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .ort-box {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}

/* -------------------------------------------------------------------------------------------------------- */
/* ÜBER UNS */
/* -------------------------------------------------------------------------------------------------------- */
.about-hero {
  padding: 6rem 1rem 5rem 1rem;
  background: var(--dunkel-tuerkis);
  color: white;
  text-align: center;
}
.about-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--hellgruen);
  padding-bottom: 10px;
}
.about-hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
.about-team {
  padding: 4rem 1rem;
  background: #f9f9f9;
  text-align: center;
}
.about-team h2 {
  color: var(--gruen);
  font-size: 2rem;
  margin-bottom: 2rem;
}
.team-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.team-member {
  max-width: 400px;
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: left;
}
.team-member img {
  width: 100%;
  /* height: auto; */
  height: 420px;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.team-member h3 {
  color: var(--hellgruen);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.team-member p {
  font-size: 1rem;
  color: var(--dunkelgrau);
  line-height: 1.6;
}

.about-values {
  padding: 4rem 1rem;
  background: var(--dunkel-tuerkis);
  color: white;
  text-align: center;
}
.about-values h2 {
  color: var(--hellgruen);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.about-values p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 1rem auto;
  text-align: justify;
}
.cta-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}

.cta-box {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
  flex: 1 1 320px;
  max-width: 480px;
  text-align: center;
}

.kontakt-box h3 {
  color: var(--gruen);
  margin-bottom: 1rem;
}

.kontakt-box a {
  color: var(--dunkelgrau);
  text-decoration: none;
}

.kontakt-box a:hover {
  text-decoration: underline;
}

.whatsapp-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.whatsapp-btn:hover {
  background-color: #1ebe59;
}

@media (max-width: 768px) {
  .team-member img {
    height: auto; /* Angepasste Höhe für kleinere Bildschirme */
  }
}
/* -------------------------------------------------------------------------------------------------------- */
/* IMPRESSUM & DATENSCHUTZ */
/* -------------------------------------------------------------------------------------------------------- */
.impressum-section,
.datenschutz-section {
  padding: 4rem 1rem;
  background-color: white;
  color: var(--dunkelgrau);
  font-size: 1.05rem;
  line-height: 1.7;
}

.impressum-section .container,
.datenschutz-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.impressum-section h1,
.datenschutz-section h1 {
  color: var(--gruen);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.impressum-section p,
.datenschutz-section p {
  margin-bottom: 1.2rem;
}
.icon-credits {
  background: #f9f9f9;
  padding: 2rem 1rem;
  margin-top: 3rem;
  border-top: 1px solid #ddd;
  font-family: 'Work Sans', sans-serif;
}

.icon-credits h2 {
  color: var(--gruen); /* oder eine passende Farbe wie #006f3c */
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.icon-credits p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.icon-credits ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.icon-credits li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.icon-credits a {
  color: var(--hellgruen); /* z. B. #00b984 */
  text-decoration: none;
  transition: color 0.2s ease;
}

.icon-credits a:hover {
  text-decoration: underline;
  color: var(--gruen);
}







