/* Test CSS für test.html */

/* Typografie-Basis */
:root {
  /* Schriftarten */
  --font-primary: 'Lora', serif;
  
  /* Farben */
  --color-text: #2c3e50;
  --color-primary: #2e7d32;
  --color-primary-dark: #1b5e20;
  --color-white: #ffffff;
  
  /* Zeilenhöhen */
  --line-height-base: 1.6;
  --line-height-heading: 1.2;
  
  /* Schriftgrößen */
  --font-size-base: 1.1rem;
  --font-size-h1: 3rem;
  --font-size-h2: 2.5rem;
  --font-size-h3: 1.8rem;
  
  /* Abstände */
  --spacing-base: 1rem;
}

/* Basis-Typografie */
body {
  font-family: var(--font-primary);
  color: var(--color-text);
  line-height: var(--line-height-base);
  font-size: var(--font-size-base);
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: var(--line-height-heading);
  color: var(--color-text);
  margin-bottom: calc(var(--spacing-base) * 1.5);
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: var(--line-height-heading);
  color: var(--color-primary);
  margin-bottom: calc(var(--spacing-base) * 1.2);
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  line-height: var(--line-height-heading);
  color: var(--color-text);
  margin-bottom: var(--spacing-base);
}

p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  margin-bottom: var(--spacing-base);
}

/* Modifier-Klassen für spezielle Überschriften */
.gradient-heading {
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-dark));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.text-white {
  color: var(--color-white);
}

.text-center {
  text-align: center;
}

/* Grundlegende Stile */
body {
  margin: 0;
  padding: 0;
  padding-top: 120px;
  font-family: 'Lora', serif;
  color: #2c3e50;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.preloader-logo {
  width: 350px;
  height: auto;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Header */
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Topbar */
.topbar-wrapper {
  width: 100%;
  background: linear-gradient(180deg, #2e7d32 0%, #1b5e20 100%);
  color: #ffffff;
  padding: 0.3rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.topbar-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.headline {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.topbar-item {
  display: flex;
  align-items: center;
}

.topbar-item a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
  position: relative;
}

.topbar-item a span {
  font-weight: 700;
  position: relative;
}

.topbar-item a span::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.topbar-item a:hover span::after {
  width: 100%;
}

.topbar-item a i.fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.topbar-item a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design für Topbar */
@media (max-width: 768px) {
  .topbar-content {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
  }
  
  .headline, .topbar-item {
    width: 100%;
    justify-content: center;
  }
  
  .topbar-item a {
    justify-content: center;
  }
}

/* Navigation */
.navbar-wrapper {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
  justify-content: center;
}

.navbar-menu li {
  position: relative;
}

.navbar-menu a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 700;
  padding: 1rem 0;
  display: block;
  transition: color 0.3s ease;
}

.navbar-menu a:hover {
  color: #2e7d32;
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: static;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  text-align: center;
}

.dropdown.active .dropdown-content {
  display: block;
}

.dropdown-content li {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
}

.dropdown-content li a {
  font-size: 1rem;
  padding: 15px 20px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  display: block;
  width: 100%;
}


/* Mobile Dropdown Styling */
@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin-top: 10px;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .dropdown.active .dropdown-content {
    max-height: 500px; /* ausreichend groß */
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  .dropdown-content li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-content li:last-child {
    border-bottom: none;
  }

  .dropdown-content li a {
    font-size: 1.1rem;
    padding: 12px 20px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    display: block;
    width: 100%;
    transition: all 0.2s ease;
  }

  .dropdown-content li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e0ffe0;
  }

  /* Optional: Dropdown-Pfeil auch mobil rotieren */
  .dropdown > a .dropdown-arrow {
    transition: transform 0.3s ease;
    margin-left: 8px;
    font-size: 0.8rem;
  }

  .dropdown.active > a .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* Intro Section */
.gartenpflege-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding: 2rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-left {
  flex: 1;
}

.intro-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.intro-logo img {
  width: 200px;
  height: auto;
}

.intro-text h1 {
  color: #2e7d32;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-text p {
  color: #34495e;
  font-size: 1.1rem;
  line-height: 1.6;
}

.intro-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  height: 400px;
}

.intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.intro-image:hover {
  transform: scale(1.05);
}

/* Einführungstext-Sektion */
.intro-text-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  color: #2c3e50;
}

.intro-text-section h2 {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 25px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}

.intro-text-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #34495e;
}

.intro-text-section p:last-child {
  margin-bottom: 0;
}

/* Responsive Anpassungen für den Einführungstext */
@media (max-width: 768px) {
  .intro-text-section {
    margin: 40px auto;
    padding: 0 15px;
  }
  
  .intro-text-section h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
  
  .intro-text-section p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  .intro-text-section {
    margin: 30px auto;
    padding: 0 10px;
  }
  
  .intro-text-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}

/* Grid Wrapper für test.html */
#galaplus-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  align-items: start;
}

#galaplus-grid-wrapper .grid-box {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#galaplus-grid-wrapper .grid-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

#galaplus-grid-wrapper .box-text {
  background: transparent;
  box-shadow: none;
  padding: 0;
  position: relative;
}

#galaplus-grid-wrapper .box-text:hover {
  transform: none;
  box-shadow: none;
}

#galaplus-grid-wrapper .box-text h2 {
  color: #2e7d32;
  font-size: 1.8rem;
  margin-bottom: -1rem;
  line-height: 1.3;
}

#galaplus-grid-wrapper .box-text p {
  color: #34495e;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

#galaplus-grid-wrapper .box-image {
  padding: 0;
  overflow: hidden;
  background: #f0f0f0;
  height: 100%;
}

#galaplus-grid-wrapper .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #f0f0f0;
}

#galaplus-grid-wrapper .box-infobox {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: #ffffff;
  height: fit-content;
  align-self: start;
}

#galaplus-grid-wrapper .box-infobox h2 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  position: relative;
  padding-bottom: 0.8rem;
  text-align: center;
}

#galaplus-grid-wrapper .box-infobox h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, 
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.1)
  );
}

#galaplus-grid-wrapper .box-infobox p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
}

.box-features {
  grid-column: 1 / -1;
  padding: 1.2rem;
  margin: 0.5rem 0 0.5rem 0;
  background-color: #f8f9fa;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.box-features h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: #2e7d32;
}

.box-features .region {
  margin-bottom: 0.8rem;
  padding: 0.8rem;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.box-features .region h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #2c3e50;
}

.box-features .region p {
  font-size: 1rem;
  line-height: 1.4;
  color: #555;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .box-features {
    padding: 1rem;
  }
  
  .box-features h2 {
    font-size: 1.4rem;
  }
  
  .box-features .region h3 {
    font-size: 1.1rem;
  }
  
  .box-features .region p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .box-features {
    padding: 0.8rem;
    margin: -1.6rem 0 0.2rem 0 !important;
  }
  
  .box-features h2 {
    font-size: 1.3rem;
  }
  
  .box-features .region {
    padding: 0.6rem;
  }
}

/* Grid Divider */
.grid-divider {
  text-align: center;
  margin: 2rem 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-divider::before,
.grid-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, 
    rgba(46, 125, 50, 0.1),
    rgba(46, 125, 50, 0.3) 20%,
    rgba(46, 125, 50, 0.3) 80%,
    rgba(46, 125, 50, 0.1)
  );
}

.grid-divider::before {
  margin-right: 1rem;
}

.grid-divider::after {
  margin-left: 1rem;
}

.leaf-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leaf-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(46, 125, 50, 0.4);
}

.leaf-icon i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Section Headline */
.section-headline {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  text-align: center;
}

.section-headline h2 {
  color: #2e7d32;
  font-size: 1.8rem;
  line-height: 1.4;
}

/* Leistungen */
.leistungen-outer-wrapper {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

/* Leistungsboxen - komplett neu definiert */
.leistung-box {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  min-width: 0; /* Verhindert Überlauf */
}

.leistung-box .icon {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.leistung-box h3 {
  font-size: var(--font-size-h3);
  color: var(--color-text);
  margin-bottom: calc(var(--spacing-base) * 1.2);
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  line-height: 1.3;
  max-height: 3.9em;
  display: block;
  position: relative;
}

.leistung-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: #ffffff;
}

.leistung-box:hover h3,
.leistung-box:hover .icon {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .leistungen-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .leistungen-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .leistungen-grid {
    display: block;
    max-width: 280px;
    margin: 0 auto;
    padding: 1rem 0;
  }
  
  .leistung-box {
    height: 180px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  
  .leistung-box:last-child {
    margin-bottom: 0;
  }
  
  .leistung-box h3 {
    font-size: 1.1rem;
    margin: 0.8rem 0;
    line-height: 1.5;
    max-height: none;
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
  }
  
  .leistung-box .icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
}

.mehr-btn {
  display: inline-block;
  background: #2e7d32;
  color: #ffffff;
  text-decoration: none;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
  margin-top: auto;
  font-size: 0.8rem;
}

.mehr-btn:hover {
  background: #1b5e20;
}

/* Prefooter */
.prefooter {
  background: linear-gradient(135deg, #333333, #1a1a1a);
  padding: 1.5rem 0;
  margin-top: 2rem;
  margin-bottom: 0;
  color: white;
  position: relative;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.prefooter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.prefooter-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.prefooter-logo {
  flex: 0 0 auto;
  text-align: center;
}

.prefooter-logo .logo {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.prefooter-logo .logo:hover {
  transform: scale(1.05);
}

.prefooter-contact {
  flex: 1;
  text-align: left;
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.prefooter-contact h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.prefooter-contact p {
  margin: 0.4rem 0;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.prefooter-contact a {
  color: #4CAF50;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.prefooter-contact a:hover {
  color: #81C784;
  text-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(180deg, #1b5e20 0%, #0d3a0d 100%);
  color: #ffffff;
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  position: relative;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #81C784;
  text-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-links {
    gap: 1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    font-weight: 700;
  }
}

@media (max-width: 576px) {
  .footer-links {
    gap: 0.8rem;
  }
  
  .footer-links a {
    font-size: 0.85rem;
    padding: 0.2rem 0.4rem;
    font-weight: 700;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .gartenpflege-intro {
    flex-direction: column;
    padding: 1rem 1rem 3rem;
    gap: 2rem;
  }

  .intro-right {
    height: 300px;
  }

  #galaplus-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .leistungen-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prefooter-content {
    flex-direction: column;
    text-align: center;
    gap: 0.1rem;
  }
  
  .prefooter-contact {
    padding-left: 0;
    padding-top: 0.1rem;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
  }
  
  .prefooter-logo .logo {
    max-width: 260px !important;
    margin-bottom: -1rem;
  }
  
  .grid-box {
    margin-bottom: 2rem;
  }
  
  .grid-box:last-child {
    margin-bottom: 0;
  }
  
  .mini-cta {
    position: relative;
    bottom: auto;
    margin: 2rem auto;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }

  .navbar-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(46, 125, 50, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 80px 20px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }

  .navbar-menu.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .navbar-menu li {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .navbar-menu li a {
    font-size: 1.2rem;
    padding: 15px 20px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
  }

  .navbar-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  }

  .dropdown.active > a {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    text-align: center;

    display: none;
    flex-direction: column;
    align-items: center;
  }

  .dropdown.active .dropdown-content {
    display: flex;
  }

  .dropdown-content li {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .dropdown-content li a {
    font-size: 1rem;
    padding: 5px 20px;
    padding-right: 40px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    display: block;
    width: auto;
    max-width: 100%;
  }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Banner Styles */
.page-banner {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin-bottom: 0;
  margin-top: -120px; /* Negativer Abstand, um den body padding-top auszugleichen */
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0;
}

.banner-overlay h1 {
  font-size: var(--font-size-h1);
  margin-bottom: 0.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
  color: var(--color-white);
}

.banner-overlay p {
  font-size: calc(var(--font-size-base) * 1.4);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
  color: var(--color-white);
}

/* Responsive Anpassungen für Grid-Boxen */
@media (max-width: 992px) {
  .grid-box {
    flex-direction: column !important;
    margin: 40px auto;
  }
  
  .grid-image {
    min-height: 300px;
  }
  
  .grid-content {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .grid-box {
    margin: 30px auto;
    border-radius: 0;
  }
  
  .grid-image {
    min-height: 250px;
  }
  
  .grid-content {
    padding: 20px;
  }
  
  .grid-content h3 {
    font-size: 1.5rem;
  }
  
  .grid-button {
    width: 100%;
    text-align: center;
  }
}

/* Mini CTA Styles */
.mini-cta {
  position: absolute;
  bottom: -270px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #2e7d32;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  z-index: 10;
  margin: 0 auto;
  width: calc(100% - 4rem);
  max-width: 1200px;
}

.mini-cta:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: #ffffff;
}

.mini-cta .header-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mini-cta i {
  font-size: 1.4rem;
}

.mini-cta .title {
  font-size: 1.3rem;
  font-weight: 600;
}

.mini-cta .description {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0.5rem 0 1rem 0;
}

/* Komplett neu gestalteter Button */
.mini-cta .cta-button {
  background: #2e7d32;
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #2e7d32;
  text-decoration: none;
  position: relative;
  z-index: 20;
}

/* Button-Hover-Effekt mit !important, um andere Styles zu überschreiben */
.mini-cta .cta-button:hover {
  background: #ffffff !important;
  color: #2e7d32 !important;
  border-color: #2e7d32 !important;
  font-weight: 700 !important;
}

/* Überschreibe den Hover-Effekt der Box für den Button */
.mini-cta:hover .cta-button {
  background: #2e7d32;
  color: #ffffff;
  border-color: #ffffff;
}

/* Responsive Anpassungen für Mini CTA */
@media (max-width: 992px) {
  .mini-cta {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 2rem auto;
    padding: 1.2rem;
    transform: none;
    width: calc(100% - 2rem);
  }
  
  .mini-cta:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 576px) {
  .mini-cta {
    margin: 1.5rem auto;
    padding: 1rem;
    left: auto;
    width: calc(100% - 2rem);
    margin-bottom: -3.5rem;
  }
  
  .mini-cta i {
    font-size: 1.2rem;
  }
  
  .mini-cta .title {
    font-size: 1.1rem;
  }
  
  .mini-cta .description {
    font-size: 0.9rem;
  }
}

/* Prefooter */
.prefooter {
  background: linear-gradient(135deg, #333333, #1a1a1a);
  padding: 1.5rem 0;
  margin-top: 2rem;
  margin-bottom: 0;
  color: white;
  position: relative;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.prefooter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.prefooter-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.prefooter-logo {
  flex: 0 0 auto;
  text-align: center;
}

.prefooter-logo .logo {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.prefooter-logo .logo:hover {
  transform: scale(1.05);
}

.prefooter-contact {
  flex: 1;
  text-align: left;
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.prefooter-contact h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.prefooter-contact p {
  margin: 0.4rem 0;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.prefooter-contact a {
  color: #4CAF50;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.prefooter-contact a:hover {
  color: #81C784;
  text-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(180deg, #1b5e20 0%, #0d3a0d 100%);
  color: #ffffff;
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  position: relative;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #81C784;
  text-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-links {
    gap: 1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    font-weight: 700;
  }
}

@media (max-width: 576px) {
  .footer-links {
    gap: 0.8rem;
  }
  
  .footer-links a {
    font-size: 0.85rem;
    padding: 0.2rem 0.4rem;
    font-weight: 700;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .gartenpflege-intro {
    flex-direction: column;
    padding: 1rem 1rem 3rem;
    gap: 2rem;
  }

  .intro-right {
    height: 300px;
  }

  #galaplus-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .leistungen-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prefooter-content {
    flex-direction: column;
    text-align: center;
    gap: 0.1rem;
  }
  
  .prefooter-contact {
    padding-left: 0;
    padding-top: 0.1rem;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
  }
  
  .prefooter-logo .logo {
    max-width: 260px !important;
    margin-bottom: -1rem;
  }
  
  .grid-box {
    margin-bottom: 2rem;
  }
  
  .grid-box:last-child {
    margin-bottom: 0;
  }
  
  .mini-cta {
    position: relative;
    bottom: auto;
    margin: 2rem auto;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }

  .navbar-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(46, 125, 50, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 80px 20px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }

  .navbar-menu.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .navbar-menu li {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .navbar-menu li a {
    font-size: 1.2rem;
    padding: 15px 20px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
  }

  .navbar-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  }

  .dropdown.active > a {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    text-align: center;

    display: none;
    flex-direction: column;
    align-items: center;
  }

  .dropdown.active .dropdown-content {
    display: flex;
  }

  .dropdown-content li {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .dropdown-content li a {
    font-size: 1rem;
    padding: 5px 20px;
    padding-right: 40px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    display: block;
    width: auto;
    max-width: 100%;
  }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Banner Styles */
.page-banner {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin-bottom: 0;
  margin-top: -120px; /* Negativer Abstand, um den body padding-top auszugleichen */
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0;
}

.banner-overlay h1 {
  font-size: var(--font-size-h1);
  margin-bottom: 0.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
  color: var(--color-white);
}

.banner-overlay p {
  font-size: calc(var(--font-size-base) * 1.4);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
  color: var(--color-white);
}

/* Responsive Anpassungen für Grid-Boxen */
@media (max-width: 992px) {
  .grid-box {
    flex-direction: column !important;
    margin: 40px auto;
  }
  
  .grid-image {
    min-height: 300px;
  }
  
  .grid-content {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .grid-box {
    margin: 30px auto;
    border-radius: 0;
  }
  
  .grid-image {
    min-height: 250px;
  }
  
  .grid-content {
    padding: 20px;
  }
  
  .grid-content h3 {
    font-size: 1.5rem;
  }
  
  .grid-button {
    width: 100%;
    text-align: center;
  }
}

/* Mini CTA Styles */
.mini-cta {
  position: absolute;
  bottom: -270px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #2e7d32;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  z-index: 10;
  margin: 0 auto;
  width: calc(100% - 4rem);
  max-width: 1200px;
}

.mini-cta:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: #ffffff;
}

.mini-cta .header-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mini-cta i {
  font-size: 1.4rem;
}

.mini-cta .title {
  font-size: 1.3rem;
  font-weight: 600;
}

.mini-cta .description {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0.5rem 0 1rem 0;
}

/* Komplett neu gestalteter Button */
.mini-cta .cta-button {
  background: #2e7d32;
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #2e7d32;
  text-decoration: none;
  position: relative;
  z-index: 20;
}

/* Button-Hover-Effekt mit !important, um andere Styles zu überschreiben */
.mini-cta .cta-button:hover {
  background: #ffffff !important;
  color: #2e7d32 !important;
  border-color: #2e7d32 !important;
  font-weight: 700 !important;
}

/* Überschreibe den Hover-Effekt der Box für den Button */
.mini-cta:hover .cta-button {
  background: #2e7d32;
  color: #ffffff;
  border-color: #ffffff;
}

/* Responsive Anpassungen für Mini CTA */
@media (max-width: 992px) {
  .mini-cta {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 2rem auto;
    padding: 1.2rem;
    transform: none;
    width: calc(100% - 2rem);
  }
  
  .mini-cta:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 576px) {
  .mini-cta {
    margin: 1.5rem auto;
    padding: 1rem;
    left: auto;
    width: calc(100% - 2rem);
    margin-bottom: -3.5rem;
  }
  
  .mini-cta i {
    font-size: 1.2rem;
  }
  
  .mini-cta .title {
    font-size: 1.1rem;
  }
  
  .mini-cta .description {
    font-size: 0.9rem;
  }
}

/* Prefooter */
.prefooter {
  background: linear-gradient(135deg, #333333, #1a1a1a);
  padding: 1.5rem 0;
  margin-top: 2rem;
  margin-bottom: 0;
  color: white;
  position: relative;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.prefooter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.prefooter-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.prefooter-logo {
  flex: 0 0 auto;
  text-align: center;
}

.prefooter-logo .logo {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.prefooter-logo .logo:hover {
  transform: scale(1.05);
}

.prefooter-contact {
  flex: 1;
  text-align: left;
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.prefooter-contact h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.prefooter-contact p {
  margin: 0.4rem 0;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.prefooter-contact a {
  color: #4CAF50;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.prefooter-contact a:hover {
  color: #81C784;
  text-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(180deg, #1b5e20 0%, #0d3a0d 100%);
  color: #ffffff;
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  position: relative;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #81C784;
  text-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-links {
    gap: 1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    font-weight: 700;
  }
}

@media (max-width: 576px) {
  .footer-links {
    gap: 0.8rem;
  }
  
  .footer-links a {
    font-size: 0.85rem;
    padding: 0.2rem 0.4rem;
    font-weight: 700;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .gartenpflege-intro {
    flex-direction: column;
    padding: 1rem 1rem 3rem;
    gap: 2rem;
  }

  .intro-right {
    height: 300px;
  }

  #galaplus-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .leistungen-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prefooter-content {
    flex-direction: column;
    text-align: center;
    gap: 0.1rem;
  }
  
  .prefooter-contact {
    padding-left: 0;
    padding-top: 0.1rem;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
  }
  
  .prefooter-logo .logo {
    max-width: 260px !important;
    margin-bottom: -1rem;
  }
  
  .grid-box {
    margin-bottom: 2rem;
  }
  
  .grid-box:last-child {
    margin-bottom: 0;
  }
  
  .mini-cta {
    position: relative;
    bottom: auto;
    margin: 2rem auto;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }

  .navbar-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(46, 125, 50, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 80px 20px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }

  .navbar-menu.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .navbar-menu li {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .navbar-menu li a {
    font-size: 1.2rem;
    padding: 15px 20px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
  }

  .navbar-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  }

  .dropdown.active > a {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    text-align: center;

    display: none;
    flex-direction: column;
    align-items: center;
  }

  .dropdown.active .dropdown-content {
    display: flex;
  }

  .dropdown-content li {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .dropdown-content li a {
    font-size: 1rem;
    padding: 5px 20px;
    padding-right: 40px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    display: block;
    width: auto;
    max-width: 100%;
  }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Banner Styles */
.page-banner {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin-bottom: 0;
  margin-top: -120px; /* Negativer Abstand, um den body padding-top auszugleichen */
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0;
}

.banner-overlay h1 {
  font-size: var(--font-size-h1);
  margin-bottom: 0.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
  color: var(--color-white);
}

.banner-overlay p {
  font-size: calc(var(--font-size-base) * 1.4);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
  color: var(--color-white);
}

/* Responsive Anpassungen für Grid-Boxen */
@media (max-width: 992px) {
  .grid-box {
    flex-direction: column !important;
    margin: 40px auto;
  }
  
  .grid-image {
    min-height: 300px;
  }
  
  .grid-content {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .grid-box {
    margin: 30px auto;
    border-radius: 0;
  }
  
  .grid-image {
    min-height: 250px;
  }
  
  .grid-content {
    padding: 20px;
  }
  
  .grid-content h3 {
    font-size: 1.5rem;
  }
  
  .grid-button {
    width: 100%;
    text-align: center;
  }
}

/* Mini CTA Styles */
.mini-cta {
  position: absolute;
  bottom: -270px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #2e7d32;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  z-index: 10;
  margin: 0 auto;
  width: calc(100% - 4rem);
  max-width: 1200px;
}

.mini-cta:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: #ffffff;
}

.mini-cta .header-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mini-cta i {
  font-size: 1.4rem;
}

.mini-cta .title {
  font-size: 1.3rem;
  font-weight: 600;
}

.mini-cta .description {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0.5rem 0 1rem 0;
}

/* Komplett neu gestalteter Button */
.mini-cta .cta-button {
  background: #2e7d32;
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #2e7d32;
  text-decoration: none;
  position: relative;
  z-index: 20;
}

/* Button-Hover-Effekt mit !important, um andere Styles zu überschreiben */
.mini-cta .cta-button:hover {
  background: #ffffff !important;
  color: #2e7d32 !important;
  border-color: #2e7d32 !important;
  font-weight: 700 !important;
}

/* Überschreibe den Hover-Effekt der Box für den Button */
.mini-cta:hover .cta-button {
  background: #2e7d32;
  color: #ffffff;
  border-color: #ffffff;
}

/* Responsive Anpassungen für Mini CTA */
@media (max-width: 992px) {
  .mini-cta {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 2rem auto;
    padding: 1.2rem;
    transform: none;
    width: calc(100% - 2rem);
  }
  
  .mini-cta:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 576px) {
  .mini-cta {
    margin: 1.5rem auto;
    padding: 1rem;
    left: auto;
    width: calc(100% - 2rem);
    margin-bottom: -3.5rem;
  }
  
  .mini-cta i {
    font-size: 1.2rem;
  }
  
  .mini-cta .title {
    font-size: 1.1rem;
  }
  
  .mini-cta .description {
    font-size: 0.9rem;
  }
}

/* Prefooter */
.prefooter {
  background: linear-gradient(135deg, #333333, #1a1a1a);
  padding: 1.5rem 0;
  margin-top: 2rem;
  margin-bottom: 0;
  color: white;
  position: relative;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.prefooter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.prefooter-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.prefooter-logo {
  flex: 0 0 auto;
  text-align: center;
}

.prefooter-logo .logo {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.prefooter-logo .logo:hover {
  transform: scale(1.05);
}

.prefooter-contact {
  flex: 1;
  text-align: left;
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.prefooter-contact h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.prefooter-contact p {
  margin: 0.4rem 0;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.prefooter-contact a {
  color: #4CAF50;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.prefooter-contact a:hover {
  color: #81C784;
  text-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(180deg, #1b5e20 0%, #0d3a0d 100%);
  color: #ffffff;
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  position: relative;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #81C784;
  text-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-links {
    gap: 1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    font-weight: 700;
  }
}

@media (max-width: 576px) {
  .footer-links {
    gap: 0.8rem;
  }
  
  .footer-links a {
    font-size: 0.85rem;
    padding: 0.2rem 0.4rem;
    font-weight: 700;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .gartenpflege-intro {
    flex-direction: column;
    padding: 1rem 1rem 3rem;
    gap: 2rem;
  }

  .intro-right {
    height: 300px;
  }

  #galaplus-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .leistungen-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prefooter-content {
    flex-direction: column;
    text-align: center;
    gap: 0.1rem;
  }
  
  .prefooter-contact {
    padding-left: 0;
    padding-top: 0.1rem;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
  }
  
  .prefooter-logo .logo {
    max-width: 260px !important;
    margin-bottom: -1rem;
  }
  
  .grid-box {
    margin-bottom: 2rem;
  }
  
  .grid-box:last-child {
    margin-bottom: 0;
  }
  
  .mini-cta {
    position: relative;
    bottom: auto;
    margin: 2rem auto;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }

  .navbar-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(46, 125, 50, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 80px 20px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }

  .navbar-menu.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .navbar-menu li {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .navbar-menu li a {
    font-size: 1.2rem;
    padding: 15px 20px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
  }

  .navbar-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  }

  .dropdown.active > a {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    text-align: center;

    display: none;
    flex-direction: column;
    align-items: center;
  }

  .dropdown.active .dropdown-content {
    display: flex;
  }

  .dropdown-content li {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .dropdown-content li a {
    font-size: 1rem;
    padding: 5px 20px;
    padding-right: 40px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    display: block;
    width: auto;
    max-width: 100%;
  }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Banner Styles */
.page-banner {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin-bottom: 0;
  margin-top: -120px; /* Negativer Abstand, um den body padding-top auszugleichen */
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0;
}

.banner-overlay h1 {
  font-size: var(--font-size-h1);
  margin-bottom: 0.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
  color: var(--color-white);
}

.banner-overlay p {
  font-size: calc(var(--font-size-base) * 1.4);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
  color: var(--color-white);
}

/* Responsive Anpassungen für Grid-Boxen */
@media (max-width: 992px) {
  .grid-box {
    flex-direction: column !important;
    margin: 40px auto;
  }
  
  .grid-image {
    min-height: 300px;
  }
  
  .grid-content {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .grid-box {
    margin: 30px auto;
    border-radius: 0;
  }
  
  .grid-image {
    min-height: 250px;
  }
  
  .grid-content {
    padding: 20px;
  }
  
  .grid-content h3 {
    font-size: 1.5rem;
  }
  
  .grid-button {
    width: 100%;
    text-align: center;
  }
}

/* Mini CTA Styles */
.mini-cta {
  position: absolute;
  bottom: -270px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #2e7d32;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  z-index: 10;
  margin: 0 auto;
  width: calc(100% - 4rem);
  max-width: 1200px;
}

.mini-cta:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: #ffffff;
}

.mini-cta .header-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mini-cta i {
  font-size: 1.4rem;
}

.mini-cta .title {
  font-size: 1.3rem;
  font-weight: 600;
}

.mini-cta .description {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0.5rem 0 1rem 0;
}

/* Komplett neu gestalteter Button */
.mini-cta .cta-button {
  background: #2e7d32;
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #2e7d32;
  text-decoration: none;
  position: relative;
  z-index: 20;
}

/* Button-Hover-Effekt mit !important, um andere Styles zu überschreiben */
.mini-cta .cta-button:hover {
  background: #ffffff !important;
  color: #2e7d32 !important;
  border-color: #2e7d32 !important;
  font-weight: 700 !important;
}

/* Überschreibe den Hover-Effekt der Box für den Button */
.mini-cta:hover .cta-button {
  background: #2e7d32;
  color: #ffffff;
  border-color: #ffffff;
}

/* Responsive Anpassungen für Mini CTA */
@media (max-width: 992px) {
  .mini-cta {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 2rem auto;
    padding: 1.2rem;
    transform: none;
    width: calc(100% - 2rem);
  }
  
  .mini-cta:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 576px) {
  .mini-cta {
    margin: 1.5rem auto;
    padding: 1rem;
    left: auto;
    width: calc(100% - 2rem);
    margin-bottom: -3.5rem;
  }
  
  .mini-cta i {
    font-size: 1.2rem;
  }
  
  .mini-cta .title {
    font-size: 1.1rem;
  }
  
  .mini-cta .description {
    font-size: 0.9rem;
  }
}

/* Prefooter */
.prefooter {
  background: linear-gradient(135deg, #333333, #1a1a1a);
  padding: 1.5rem 0;
  margin-top: 2rem;
  margin-bottom: 0;
  color: white;
  position: relative;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.prefooter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.prefooter-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.prefooter-logo {
  flex: 0 0 auto;
  text-align: center;
}

.prefooter-logo .logo {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.prefooter-logo .logo:hover {
  transform: scale(1.05);
}

.prefooter-contact {
  flex: 1;
  text-align: left;
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.prefooter-contact h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.prefooter-contact p {
  margin: 0.4rem 0;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.prefooter-contact a {
  color: #4CAF50;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.prefooter-contact a:hover {
  color: #81C784;
  text-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(180deg, #1b5e20 0%, #0d3a0d 100%);
  color: #ffffff;
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  position: relative;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #81C784;
  text-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-links {
    gap: 1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    font-weight: 700;
  }
}

@media (max-width: 576px) {
  .footer-links {
    gap: 0.8rem;
  }
  
  .footer-links a {
    font-size: 0.85rem;
    padding: 0.2rem 0.4rem;
    font-weight: 700;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .gartenpflege-intro {
    flex-direction: column;
    padding: 1rem 1rem 3rem;
    gap: 2rem;
  }

  .intro-right {
    height: 300px;
  }

  #galaplus-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .leistungen-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prefooter-content {
    flex-direction: column;
    text-align: center;
    gap: 0.1rem;
  }
  
  .prefooter-contact {
    padding-left: 0;
    padding-top: 0.1rem;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
  }
  
  .prefooter-logo .logo {
    max-width: 260px !important;
    margin-bottom: -1rem;
  }
  
  .grid-box {
    margin-bottom: 2rem;
  }
  
  .grid-box:last-child {
    margin-bottom: 0;
  }
  
  .mini-cta {
    position: relative;
    bottom: auto;
    margin: 2rem auto;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }

  .navbar-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(46, 125, 50, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 80px 20px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }

  .navbar-menu.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .navbar-menu li {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .navbar-menu li a {
    font-size: 1.2rem;
    padding: 15px 20px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
  }

  .navbar-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  }

  .dropdown.active > a {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    text-align: center;

    display: none;
    flex-direction: column;
    align-items: center;
  }

  .dropdown.active .dropdown-content {
    display: flex;
  }

  .dropdown-content li {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .dropdown-content li a {
    font-size: 1rem;
    padding: 5px 20px;
    padding-right: 40px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    display: block;
    width: auto;
    max-width: 100%;
  }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Banner Styles */
.page-banner {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin-bottom: 0;
  margin-top: -120px; /* Negativer Abstand, um den body padding-top auszugleichen */
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0;
}

.banner-overlay h1 {
  font-size: var(--font-size-h1);
  margin-bottom: 0.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
  color: var(--color-white);
}

.banner-overlay p {
  font-size: calc(var(--font-size-base) * 1.4);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
  color: var(--color-white);
}

/* Responsive Anpassungen für Grid-Boxen */
@media (max-width: 992px) {
  .grid-box {
    flex-direction: column !important;
    margin: 40px auto;
  }
  
  .grid-image {
    min-height: 300px;
  }
  
  .grid-content {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .grid-box {
    margin: 30px auto;
    border-radius: 0;
  }
  
  .grid-image {
    min-height: 250px;
  }
  
  .grid-content {
    padding: 20px;
  }
  
  .grid-content h3 {
    font-size: 1.5rem;
  }
  
  .grid-button {
    width: 100%;
    text-align: center;
  }
}

/* Mini CTA Styles */
.mini-cta {
  position: absolute;
  bottom: -270px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #2e7d32;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  z-index: 10;
  margin: 0 auto;
  width: calc(100% - 4rem);
  max-width: 1200px;
}

.mini-cta:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: #ffffff;
}

.mini-cta .header-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mini-cta i {
  font-size: 1.4rem;
}

.mini-cta .title {
  font-size: 1.3rem;
  font-weight: 600;
}

.mini-cta .description {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0.5rem 0 1rem 0;
}

/* Komplett neu gestalteter Button */
.mini-cta .cta-button {
  background: #2e7d32;
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #2e7d32;
  text-decoration: none;
  position: relative;
  z-index: 20;
}

/* Button-Hover-Effekt mit !important, um andere Styles zu überschreiben */
.mini-cta .cta-button:hover {
  background: #ffffff !important;
  color: #2e7d32 !important;
  border-color: #2e7d32 !important;
  font-weight: 700 !important;
}

/* Überschreibe den Hover-Effekt der Box für den Button */
.mini-cta:hover .cta-button {
  background: #2e7d32;
  color: #ffffff;
  border-color: #ffffff;
}

/* Responsive Anpassungen für Mini CTA */
@media (max-width: 992px) {
  .mini-cta {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 2rem auto;
    padding: 1.2rem;
    transform: none;
    width: calc(100% - 2rem);
  }
  
  .mini-cta:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 576px) {
  .mini-cta {
    margin: 1.5rem auto;
    padding: 1rem;
    left: auto;
    width: calc(100% - 2rem);
    margin-bottom: -3.5rem;
  }
  
  .mini-cta i {
    font-size: 1.2rem;
  }
  
  .mini-cta .title {
    font-size: 1.1rem;
  }
  
  .mini-cta .description {
    font-size: 0.9rem;
  }
}

/* Prefooter */
.prefooter {
  background: linear-gradient(135deg, #333333, #1a1a1a);
  padding: 1.5rem 0;
  margin-top: 2rem;
  margin-bottom: 0;
  color: white;
  position: relative;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.prefooter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.prefooter-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.prefooter-logo {
  flex: 0 0 auto;
  text-align: center;
}

.prefooter-logo .logo {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.prefooter-logo .logo:hover {
  transform: scale(1.05);
}

.prefooter-contact {
  flex: 1;
  text-align: left;
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.prefooter-contact h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.prefooter-contact p {
  margin: 0.4rem 0;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.prefooter-contact a {
  color: #4CAF50;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.prefooter-contact a:hover {
  color: #81C784;
  text-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(180deg, #1b5e20 0%, #0d3a0d 100%);
  color: #ffffff;
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  position: relative;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #81C784;
  text-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-links {
    gap: 1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    font-weight: 700;
  }
}

@media (max-width: 576px) {
  .footer-links {
    gap: 0.8rem;
  }
  
  .footer-links a {
    font-size: 0.85rem;
    padding: 0.2rem 0.4rem;
    font-weight: 700;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .gartenpflege-intro {
    flex-direction: column;
    padding: 1rem 1rem 3rem;
    gap: 2rem;
  }

  .intro-right {
    height: 300px;
  }

  #galaplus-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .leistungen-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prefooter-content {
    flex-direction: column;
    text-align: center;
    gap: 0.1rem;
  }
  
  .prefooter-contact {
    padding-left: 0;
    padding-top: 0.1rem;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
  }
  
  .prefooter-logo .logo {
    max-width: 260px !important;
    margin-bottom: -1rem;
  }
  
  .grid-box {
    margin-bottom: 2rem;
  }
  
  .grid-box:last-child {
    margin-bottom: 0;
  }
  
  .mini-cta {
    position: relative;
    bottom: auto;
    margin: 2rem auto;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }

  .navbar-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(46, 125, 50, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 80px 20px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }

  .navbar-menu.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .navbar-menu li {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .navbar-menu li a {
    font-size: 1.2rem;
    padding: 15px 20px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
  }

  .navbar-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  }

  .dropdown.active > a {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    text-align: center;

    display: none;
    flex-direction: column;
    align-items: center;
  }

  .dropdown.active .dropdown-content {
    display: flex;
  }

  .dropdown-content li {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .dropdown-content li a {
    font-size: 1rem;
    padding: 5px 20px;
    padding-right: 40px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    display: block;
    width: auto;
    max-width: 100%;
  }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Banner Styles */
.page-banner {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin-bottom: 0;
  margin-top: -120px; /* Negativer Abstand, um den body padding-top auszugleichen */
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0;
}

.banner-overlay h1 {
  font-size: var(--font-size-h1);
  margin-bottom: 0.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
  color: var(--color-white);
}

.banner-overlay p {
  font-size: calc(var(--font-size-base) * 1.4);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
  color: var(--color-white);
}

/* Responsive Anpassungen für Grid-Boxen */
@media (max-width: 992px) {
  .grid-box {
    flex-direction: column !important;
    margin: 40px auto;
  }
  
  .grid-image {
    min-height: 300px;
  }
  
  .grid-content {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .grid-box {
    margin: 30px auto;
    border-radius: 0;
  }
  
  .grid-image {
    min-height: 250px;
  }
  
  .grid-content {
    padding: 20px;
  }
  
  .grid-content h3 {
    font-size: 1.5rem;
  }
  
  .grid-button {
    width: 100%;
    text-align: center;
  }
}

/* Mini CTA Styles */
.mini-cta {
  position: absolute;
  bottom: -270px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #2e7d32;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  z-index: 10;
  margin: 0 auto;
  width: calc(100% - 4rem);
  max-width: 1200px;
}

.mini-cta:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: #ffffff;
}

.mini-cta .header-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mini-cta i {
  font-size: 1.4rem;
}

.mini-cta .title {
  font-size: 1.3rem;
  font-weight: 600;
}

.mini-cta .description {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0.5rem 0 1rem 0;
}

/* Komplett neu gestalteter Button */
.mini-cta .cta-button {
  background: #2e7d32;
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #2e7d32;
  text-decoration: none;
  position: relative;
  z-index: 20;
}

/* Button-Hover-Effekt mit !important, um andere Styles zu überschreiben */
.mini-cta .cta-button:hover {
  background: #ffffff !important;
  color: #2e7d32 !important;
  border-color: #2e7d32 !important;
  font-weight: 700 !important;
}

/* Überschreibe den Hover-Effekt der Box für den Button */
.mini-cta:hover .cta-button {
  background: #2e7d32;
  color: #ffffff;
  border-color: #ffffff;
}

/* Responsive Anpassungen für Mini CTA */
@media (max-width: 992px) {
  .mini-cta {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 2rem auto;
    padding: 1.2rem;
    transform: none;
    width: calc(100% - 2rem);
  }
  
  .mini-cta:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 576px) {
  .mini-cta {
    margin: 1.5rem auto;
    padding: 1rem;
    left: auto;
    width: calc(100% - 2rem);
    margin-bottom: -3.5rem;
  }
  
  .mini-cta i {
    font-size: 1.2rem;
  }
  
  .mini-cta .title {
    font-size: 1.1rem;
  }
  
  .mini-cta .description {
    font-size: 0.9rem;
  }
}

/* Prefooter */
.prefooter {
  background: linear-gradient(135deg, #333333, #1a1a1a);
  padding: 1.5rem 0;
  margin-top: 2rem;
  margin-bottom: 0;
  color: white;
  position: relative;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.prefooter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.prefooter-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.prefooter-logo {
  flex: 0 0 auto;
  text-align: center;
}

.prefooter-logo .logo {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.prefooter-logo .logo:hover {
  transform: scale(1.05);
}

.prefooter-contact {
  flex: 1;
  text-align: left;
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.prefooter-contact h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.prefooter-contact p {
  margin: 0.4rem 0;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.prefooter-contact a {
  color: #4CAF50;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.prefooter-contact a:hover {
  color: #81C784;
  text-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

/* Service Grid Section Styles */
.service-grid-section {
    padding: 4rem 2rem;
    background-color: var(--background-color);
}

.service-grid-container {
  max-width: 1200px;
  margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-grid-left {
  display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-grid-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-grid-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.service-grid-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-grid-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-box-item {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(220, 220, 220, 0.5);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  display: flex;
  justify-content: center;
    align-items: center;
    min-height: 80px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-box-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(31, 38, 135, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.service-box-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-box-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-box-item:last-child {
    grid-column: 1 / -1;
}

/* Responsive Design für Service Grid */
@media (max-width: 992px) {
    .service-grid-container {
    grid-template-columns: 1fr;
    }
    
    .service-grid-right {
        order: -1;
    }
}

@media (max-width: 768px) {
    .service-box-grid {
        grid-template-columns: 1fr;
    }
    
    .service-grid-title {
        font-size: 2rem;
    }
}

/* Glasmorphismus-Effekt für die Box */
.glass-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(220, 220, 220, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  padding: 2rem;
    margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.glass-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

.glass-box .service-grid-title {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.glass-box .service-grid-text {
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.glass-box .service-grid-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.glass-box .service-grid-image img {
    width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.glass-box .service-grid-image img:hover {
  transform: scale(1.05);
}

/* Anpassung für mobile Geräte */
@media (max-width: 768px) {
  .glass-box {
    padding: 1.5rem;
  }
}

/* Service-Boxen im Glasmorphismus-Effekt */
.service-boxes-container {
  padding: 2rem;
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

.service-boxes-title {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-box-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
    width: 100%;
  box-sizing: border-box;
}

.service-box-item {
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(220, 220, 220, 0.5);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  display: flex;
  justify-content: center;
    align-items: center;
  min-height: 80px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-box-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(31, 38, 135, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.service-box-item h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
    text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin: 0;
}

/* Responsive Design für Service Grid */
@media (max-width: 992px) {
    .service-grid-container {
        grid-template-columns: 1fr;
    }
    
    .service-grid-right {
        order: -1;
    }
}

@media (max-width: 768px) {
    .service-box-grid {
    grid-template-columns: 1fr;
    }
    
    .service-grid-title {
        font-size: 2rem;
    }
    
    .glass-box {
      padding: 1.5rem;
    }
    
    .service-boxes-container {
      padding: 1.5rem;
    }
    
    .service-boxes-title {
      font-size: 1.8rem;
    }
    
    .service-box-item {
      min-height: 70px;
    }
    
    .service-box-item h3 {
      font-size: 1.2rem;
    }
}

/* Zweites Service Grid */
.second-service-grid {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(220, 220, 220, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.second-service-grid .service-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

.second-service-grid .service-grid-right {
    text-align: right;
}

.second-service-grid .service-grid-left {
    text-align: left;
}

.second-service-grid .service-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.second-service-grid .service-box-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.second-service-grid .service-box-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(31, 38, 135, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.second-service-grid .service-box-item h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

/* Dritte Service Grid Section Styles */
.service-grid-section-3 {
    padding: 4rem 2rem;
    background-color: var(--background-color);
}

.service-grid-container-3 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-grid-left-3 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-grid-title-3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-grid-text-3 {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.service-grid-image-3 {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-grid-image-3 img {
    width: 100%;
    height: auto;
    display: block;
}

.service-box-grid-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-box-item-3 {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(220, 220, 220, 0.5);
  padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  display: flex;
    justify-content: center;
  align-items: center;
    min-height: 80px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-box-item-3:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(31, 38, 135, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.service-box-item-3 h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin: 0;
}

/* Glasmorphismus-Effekt für die Box der dritten Section */
.glass-box-3 {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(220, 220, 220, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.glass-box-3:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

.glass-box-3 .service-grid-title-3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.glass-box-3 .service-grid-text-3 {
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.glass-box-3 .service-grid-image-3 {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.glass-box-3 .service-grid-image-3 img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.glass-box-3 .service-grid-image-3 img:hover {
  transform: scale(1.05);
}

/* Service-Boxen im Glasmorphismus-Effekt für die dritte Section */
.service-boxes-container-3 {
  padding: 2rem;
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

.service-boxes-title-3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
    text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Letzter Punkt in der dritten Section über die gesamte Breite */
.service-box-grid-3 .service-box-item-3:last-child {
  grid-column: 1 / -1;
    width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 1.5rem;
}

/* Responsive Design für die dritte Service Grid Section */
@media (max-width: 992px) {
    .service-grid-container-3 {
        grid-template-columns: 1fr;
    }
    
    .service-grid-right-3 {
        order: -1;
    }
}

@media (max-width: 768px) {
    .service-box-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .service-grid-title-3 {
        font-size: 2rem;
    }
    
    .glass-box-3 {
      padding: 1.5rem;
    }
    
    .service-boxes-container-3 {
      padding: 1.5rem;
    }
    
    .service-boxes-title-3 {
      font-size: 1.8rem;
    }
    
    .service-box-item-3 {
      min-height: 70px;
    }
    
    .service-box-item-3 h3 {
      font-size: 1.2rem;
    }
}

/* Zweite Service Grid Section Styles */
.service-grid-section-2 {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
}

.service-grid-container-2 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-grid-left-2 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-grid-title-2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-grid-text-2 {
  font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.service-grid-image-2 {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-grid-image-2 img {
    width: 100%;
    height: auto;
    display: block;
}

.service-box-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-box-item-2 {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(220, 220, 220, 0.5);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  display: flex;
  justify-content: center;
    align-items: center;
    min-height: 80px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-box-item-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(31, 38, 135, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.service-box-item-2 h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin: 0;
}

/* Glasmorphismus-Effekt für die Box der zweiten Section */
.glass-box-2 {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(220, 220, 220, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  padding: 2rem;
    margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.glass-box-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

.glass-box-2 .service-grid-title-2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.glass-box-2 .service-grid-text-2 {
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.glass-box-2 .service-grid-image-2 {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.glass-box-2 .service-grid-image-2 img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.glass-box-2 .service-grid-image-2 img:hover {
  transform: scale(1.05);
}

/* Service-Boxen im Glasmorphismus-Effekt für die zweite Section */
.service-boxes-container-2 {
  padding: 2rem;
    margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

.service-boxes-title-2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design für die zweite Service Grid Section */
@media (max-width: 992px) {
    .service-grid-container-2 {
        grid-template-columns: 1fr;
    }
    
    .service-grid-right-2 {
        order: -1;
    }
}

@media (max-width: 768px) {
    .service-box-grid-2 {
    grid-template-columns: 1fr;
    }
    
    .service-grid-title-2 {
        font-size: 2rem;
    }
    
    .glass-box-2 {
      padding: 1.5rem;
    }
    
    .service-boxes-container-2 {
      padding: 1.5rem;
    }
    
    .service-boxes-title-2 {
      font-size: 1.8rem;
    }
    
    .service-box-item-2 {
      min-height: 70px;
    }
    
    .service-box-item-2 h3 {
      font-size: 1.2rem;
    }
}

/* Anker-Sektionen Abstand nach oben - nur für Anker-Links */
section[id] {
  scroll-margin-top: 200px; /* Moderner Browser-Standard */
}

/* Hamburger Menu Icon */
.hamburger {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
    position: relative;
  right: 0;
  background: transparent;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #2c3e50;
  margin: 5px 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .navbar-content {
    position: relative;
    padding: 0 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .hamburger {
    display: block;
  }

  .navbar-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(46, 125, 50, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;/*80px 20px 20px;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }

  .navbar-menu.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .navbar-menu li {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .navbar-menu li a {
    font-size: 1.2rem;
    padding: 15px 20px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
  color: #ffffff;
    font-weight: 700;
    text-align: center;
  }

  .navbar-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  }

  .dropdown.active > a {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }

  .dropdown-content {
    display: none;
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    text-align: center;

    display: none;
    flex-direction: column;
    align-items: center;
  }

  .dropdown.active .dropdown-content {
    display: flex;
  }

  .dropdown-content li {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .dropdown-content li a {
    font-size: 1rem;
    padding: 5px 20px;
    padding-right: 40px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    display: block;
    width: auto;
    max-width: 100%;
  }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Parallelogramm-Bildergalerie */
.skewed-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.skewed-card {
    flex: 0 1 300px;
    height: 400px;
    transform: skew(-11deg);
  position: relative;
  overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center;
}

.card-inner {
  width: 100%;
  height: 100%;
    transform: skew(10deg) scale(1.15);
    margin-left: -8%;
}

.card-inner img {
    width: 120%;
  height: 100%;
  object-fit: cover;
    object-position: center;
    display: block;
}

/* Responsive Design für die Parallelogramm-Galerie */
@media (max-width: 992px) {
    .skewed-gallery {
        padding: 3rem 1.5rem;
        gap: 1.5rem;
    }

    .skewed-card {
        flex: 0 1 250px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .skewed-gallery {
        padding: 2rem 1rem;
        gap: 1rem;
    }

    .skewed-card {
        flex: 0 1 180px;
        height: 250px;
  }
}

@media (max-width: 576px) {
    .skewed-gallery {
        gap: 0.8rem;
        transform: scale(0.85);
        transform-origin: top center;
        overflow: visible;
        margin-bottom: -15rem;
    }

    .skewed-card {
        flex: 0 1 150px;
        height: 200px;
    }
}

/* Schwebendes Logo */
.floating-logo {
    position: relative;
    width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
    margin-top: 3rem;
    margin-bottom: -3rem;
  z-index: 10;
    left: 50%;
    transform: translateX(-50%);
  max-width: 1200px;
}

.floating-logo-image {
    width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

/* Responsive Design für das Logo */
@media (max-width: 768px) {
  .floating-logo {
    margin-top: 140px;
    margin-bottom: -7rem;
    position: relative;
    z-index: 1; /* Unter dem Header (der hat z-index: 1000) */
  }

  .floating-logo-image {
    width: 280px;
  }
}

@media (max-width: 576px) {
  .floating-logo {
    margin-top: 130px;
    z-index: 1;
  }

  .floating-logo-image {
    width: 220px;
  }
}

/* Desktop Dropdown Styles */
@media (min-width: 992px) {
  .navbar-wrapper .navbar-content .navbar-menu .dropdown {
    position: relative;
  }

  .navbar-wrapper .navbar-content .navbar-menu .dropdown-content {
    position: absolute;
    top: calc(100% + 5px); /* Kleiner Puffer */
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 4px;
    z-index: 1000;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
  transition: all 0.3s ease;
  }

  .navbar-wrapper .navbar-content .navbar-menu .dropdown:hover .dropdown-content,
  .navbar-wrapper .navbar-content .navbar-menu .dropdown-content:hover {
    opacity: 1;
    visibility: visible;
  }

  .navbar-wrapper .navbar-content .navbar-menu .dropdown-content li {
  padding: 0;
}

  .navbar-wrapper .navbar-content .navbar-menu .dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
  text-decoration: none;
    transition: all 0.3s ease;
  }

  .navbar-wrapper .navbar-content .navbar-menu .dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #2e7d32;
  }
}
/* Desktop Dropdown Styling */
@media (min-width: 769px) {
  .navbar-menu li.dropdown {
  position: relative;
  }

  /* Unsichtbarer Hover-Puffer unter dem Hauptmenüpunkt */
  .navbar-menu li.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    height: 25px; /* Hoverbereich nach unten erweitern */
  width: 100%;
    pointer-events: auto;
    z-index: 998;
  }

  .navbar-menu li.dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    min-width: 180px;
  background: #2e7d32;
    padding: 10px 0;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow: hidden;
    box-sizing: border-box;
    list-style: none;
    margin: 0;
  }

  .dropdown-content li {
    text-align: left;
    list-style: none;
  }

  .dropdown-content li a {
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    display: block;
  width: 100%;
    text-align: left;
    background: transparent;
    transition: background 0.2s ease;
    border-radius: 0;
  }

  .dropdown-content li a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  /* Visueller Dropdown-Pfeil neben Oberpunkten */
.dropdown-arrow {
  margin-left: 6px;
  transition: transform 0.3s ease;
  font-size: 0.7rem;
}

/* Dreht den Pfeil bei Hover */
.navbar-menu li.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

}

.slider-leistungen-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.slider-leistungen-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.slider-leistungen-btn {
  padding: 16px 32px;
  border: none;
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
  color: #006400;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1em;
  box-shadow: 0 4px 15px rgba(0, 100, 0, 0.1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.slider-leistungen-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #006400, #004d00);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.slider-leistungen-btn span {
  position: relative;
  z-index: 2;
  color: #006400;
  transition: all 0.4s ease;
}

.slider-leistungen-btn.active span,
.slider-leistungen-btn:hover span {
  color: white;
  transform: translateY(-1px);
}

.slider-leistungen-btn.active,
.slider-leistungen-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 100, 0, 0.2);
}

.slider-leistungen-btn.active::before,
.slider-leistungen-btn:hover::before {
  opacity: 1;
}

.slider-leistungen-wrapper {
  position: relative;
    width: 100%;
  overflow: hidden;
  min-height: 1000px;
  transition: height 0.4s ease;
}

.slider-leistungen-inner {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 100, 0, 0.08);
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: auto;
  border: 1px solid rgba(0, 100, 0, 0.1);
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  will-change: transform;
  padding-bottom: 40px;
}

.slider-leistungen-top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 30px;
}

.slider-leistungen-top-row::after {
  display: none;
}

.slider-leistungen-top-row img {
  width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  filter: brightness(0.95);
  border: 1px solid rgba(0, 100, 0, 0.1);
}

.slider-leistungen-top-row img:hover {
  transform: scale(1.02);
  filter: brightness(1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.slider-leistungen-top-row h2,
.dienstleistungen-slider-top-row h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: var(--line-height-heading);
  text-align: right;
  flex-grow: 1;
  letter-spacing: -0.5px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  white-space: pre-line;
  word-wrap: break-word;
}

.slider-leistungen-top-row h2 span,
.dienstleistungen-slider-top-row h2 span {
  display: block;
  line-height: 1.2;
  margin-bottom: 0.2rem;
  white-space: normal;
}

@media (max-width: 992px) {
  .slider-leistungen-top-row h2,
  .dienstleistungen-slider-top-row h2 {
  align-items: center;
  }
}

.slider-leistungen-top-row h2::after,
.dienstleistungen-slider-top-row h2::after {
  display: none;
}

.slider-leistungen-inner p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  margin: calc(var(--spacing-base) * 1.5) 0;
  letter-spacing: 0.2px;
  padding: var(--spacing-base);
  background: rgba(0, 100, 0, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(0, 100, 0, 0.05);
}

.slider-leistungen-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding: 0 20px;
  margin-bottom: 0;
}

.slider-leistungen-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(0, 100, 0, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(0, 100, 0, 0.1);
  transition: all 0.3s ease;
}

.slider-leistungen-item:hover {
  transform: translateY(-3px);
  background: rgba(0, 100, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 100, 0, 0.1);
}

.slider-leistungen-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, #006400, #004d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2em;
  flex-shrink: 0;
}

.slider-leistungen-text {
  font-size: var(--font-size-base);
  color: var(--color-text);
  font-weight: 500;
}

.slider-leistungen-inner img {
  display: block;
  width: 500px;
    height: 300px;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .slider-leistungen-top-row img {
    width: 300px;
    height: 180px;
  }
}

@media (max-width: 992px) {
  .slider-leistungen-top-row {
    flex-direction: column;
    align-items: center;
  }

  .slider-leistungen-top-row img {
    width: 300px;
    height: 180px;
    max-width: 300px;
    max-height: 180px;
  }

  .slider-leistungen-top-row h2 {
    text-align: center;
    font-size: 2.5em;
  }

  .slider-leistungen-list {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }

  .slider-leistungen-item {
    padding: 12px;
  }

  .slider-leistungen-inner img {
    width: 300px;
    height: 180px;
    max-width: 300px;
    max-height: 180px;
  }
}

@media (max-width: 768px) {
  .slider-leistungen-section {
    padding: 40px 20px;
  }

  .slider-leistungen-buttons {
    gap: 20px;
  }

  .slider-leistungen-btn {
    padding: 12px 24px;
    font-size: 1em;
  }

  .slider-leistungen-inner {
    padding: 30px 20px;
  }

  .slider-leistungen-top-row h2 {
    font-size: 2.2em;
  }

  .slider-leistungen-inner p {
    font-size: 1.1em;
    padding: 15px;
  }

  .slider-leistungen-list {
    gap: 12px;
    margin-top: 20px;
  }

  .slider-leistungen-item {
    padding: 10px;
  }

  .slider-leistungen-icon {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }

  .slider-leistungen-text {
    font-size: 1em;
  }

}

@media (max-width: 480px) {
  .slider-leistungen-section {
    padding: 30px 15px;
  }

  .slider-leistungen-buttons {
    gap: 10px;
    margin-bottom: 40px;
  }

  .slider-leistungen-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .slider-leistungen-inner {
    padding: 20px 15px;
  }

  .slider-leistungen-top-row h2 {
    font-size: 1.8em;
  }

  .slider-leistungen-inner p {
    font-size: 1em;
    padding: 12px;
  }

  .slider-leistungen-list {
    gap: 10px;
    margin-top: 15px;
    padding: 0 5px;
  }

  .slider-leistungen-item {
    padding: 8px;
  }

  .slider-leistungen-icon {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }

  .slider-leistungen-text {
    font-size: 0.9em;
  }
} 

.dienstleistungen-slider-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.dienstleistungen-slider-buttons {
    display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.dienstleistungen-slider-btn {
  padding: 16px 32px;
  border: none;
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
  color: #006400;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1em;
  box-shadow: 0 4px 15px rgba(0, 100, 0, 0.1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.dienstleistungen-slider-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #006400, #004d00);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.dienstleistungen-slider-btn span {
  position: relative;
  z-index: 2;
  color: #006400;
  transition: all 0.4s ease;
}

.dienstleistungen-slider-btn.active span,
.dienstleistungen-slider-btn:hover span {
  color: white;
  transform: translateY(-1px);
}

.dienstleistungen-slider-btn.active,
.dienstleistungen-slider-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 100, 0, 0.2);
}

.dienstleistungen-slider-btn.active::before,
.dienstleistungen-slider-btn:hover::before {
  opacity: 1;
}

.dienstleistungen-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 1000px;
  transition: height 0.4s ease;
}

.dienstleistungen-slider-inner {
  display: flex;
    flex-direction: column;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 100, 0, 0.08);
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: auto;
  border: 1px solid rgba(0, 100, 0, 0.1);
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  will-change: transform;
  padding-bottom: 40px;
}

.dienstleistungen-slider-top-row {
    display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 30px;
}

.dienstleistungen-slider-top-row::after {
  display: none;
}

.dienstleistungen-slider-top-row img {
  width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  filter: brightness(0.95);
  border: 1px solid rgba(0, 100, 0, 0.1);
}

.dienstleistungen-slider-top-row img:hover {
  transform: scale(1.02);
  filter: brightness(1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.dienstleistungen-slider-top-row h2,
.dienstleistungen-slider-top-row h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: var(--line-height-heading);
  text-align: right;
  flex-grow: 1;
  letter-spacing: -0.5px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  white-space: pre-line;
  word-wrap: break-word;
}

.dienstleistungen-slider-top-row h2 span,
.dienstleistungen-slider-top-row h2 span {
    display: block;
  line-height: 1.2;
  margin-bottom: 0.2rem;
  white-space: normal;
}

@media (max-width: 992px) {
  .dienstleistungen-slider-top-row h2,
  .dienstleistungen-slider-top-row h2 {
    align-items: center;
  }
}

.dienstleistungen-slider-top-row h2::after,
.dienstleistungen-slider-top-row h2::after {
  display: none;
}

.dienstleistungen-slider-inner p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  margin: calc(var(--spacing-base) * 1.5) 0;
  letter-spacing: 0.2px;
  padding: var(--spacing-base);
  background: rgba(0, 100, 0, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(0, 100, 0, 0.05);
}

.dienstleistungen-slider-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding: 0 20px;
  margin-bottom: 0;
}

.dienstleistungen-slider-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(0, 100, 0, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(0, 100, 0, 0.1);
  transition: all 0.3s ease;
}

.dienstleistungen-slider-item:hover {
  transform: translateY(-3px);
  background: rgba(0, 100, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 100, 0, 0.1);
}

.dienstleistungen-slider-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, #006400, #004d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2em;
  flex-shrink: 0;
}

.dienstleistungen-slider-text {
  font-size: var(--font-size-base);
  color: var(--color-text);
  font-weight: 500;
}

.dienstleistungen-slider-inner img {
  display: block;
  width: 500px;
  height: 300px;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .dienstleistungen-slider-top-row img {
    width: 300px;
    height: 180px;
  }
}

@media (max-width: 992px) {
  .dienstleistungen-slider-top-row {
  flex-direction: column;
  align-items: center;
  }

  .dienstleistungen-slider-top-row img {
    width: 300px;
    height: 180px;
    max-width: 300px;
    max-height: 180px;
  }

  .dienstleistungen-slider-top-row h2 {
  text-align: center;
    font-size: 2.5em;
  }

  .dienstleistungen-slider-list {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }

  .dienstleistungen-slider-item {
    padding: 12px;
  }

  .dienstleistungen-slider-inner img {
    width: 300px;
    height: 180px;
    max-width: 300px;
    max-height: 180px;
  }
}

@media (max-width: 768px) {
  .dienstleistungen-slider-section {
    padding: 40px 20px;
  }

  .dienstleistungen-slider-buttons {
    gap: 20px;
  }

  .dienstleistungen-slider-btn {
    padding: 12px 24px;
    font-size: 1em;
  }

  .dienstleistungen-slider-inner {
    padding: 30px 20px;
  }

  .dienstleistungen-slider-top-row h2 {
    font-size: 2.2em;
  }

  .dienstleistungen-slider-inner p {
    font-size: 1.1em;
    padding: 15px;
  }

  .dienstleistungen-slider-list {
    gap: 12px;
    margin-top: 20px;
  }

  .dienstleistungen-slider-item {
    padding: 10px;
  }

  .dienstleistungen-slider-icon {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }

  .dienstleistungen-slider-text {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .dienstleistungen-slider-section {
    padding: 30px 15px;
  }

  .dienstleistungen-slider-buttons {
    gap: 10px;
    margin-bottom: 40px;
  }

  .dienstleistungen-slider-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .dienstleistungen-slider-inner {
    padding: 20px 15px;
  }

  .dienstleistungen-slider-top-row h2 {
    font-size: 1.8em;
  }

  .dienstleistungen-slider-inner p {
    font-size: 1em;
    padding: 12px;
  }

  .dienstleistungen-slider-list {
    gap: 10px;
    margin-top: 15px;
    padding: 0 5px;
  }

  .dienstleistungen-slider-item {
    padding: 8px;
  }

  .dienstleistungen-slider-icon {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }

  .dienstleistungen-slider-text {
    font-size: 0.9em;
  }
} 

/* Spezielle Typografie für Index-Leistungsboxen */
.index-leistung-box h3 {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0.2rem;
  color: var(--color-text);
  font-weight: 600;
}

.index-leistung-box .mehr-btn {
  margin-top: 0.2rem;
  padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
}

.index-leistung-box p {
    font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0;
  color: var(--color-text);
}

/* Kontaktformular Styles */
.kontakt-page .contact-section {
  padding: 50px 20px;
  background-color: #f4f6f5;
}

.kontakt-page .contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.kontakt-page .contact-title {
  text-align: center;
  color: #2e7d32;
  font-size: 2.5rem;
    font-weight: 700;
  margin-bottom: 40px;
}

.kontakt-page .contact-form {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 2px solid #e0e0e0;
}

.kontakt-page .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.kontakt-page .form-group {
  position: relative;
  flex: 1;
  margin-bottom: 24px;
}

.kontakt-page .form-group input,
.kontakt-page .form-group textarea {
    width: 100%;
  padding: 16px 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
}

.kontakt-page .form-group input:focus,
.kontakt-page .form-group textarea:focus {
  border-color: #2e7d32;
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

.kontakt-page .form-group label {
  position: absolute;
  left: 12px;
  top: 16px;
  background: white;
  padding: 0 4px;
  color: #888;
  transition: all 0.2s ease;
  pointer-events: none;
}

.kontakt-page .form-group input:focus + label,
.kontakt-page .form-group input:not(:placeholder-shown) + label,
.kontakt-page .form-group textarea:focus + label,
.kontakt-page .form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 0.75rem;
  color: #2e7d32;
}

.kontakt-page .error-message {
  color: #d32f2f;
    font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}

/* Checkbox */
.kontakt-page .checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.kontakt-page .checkbox-wrapper input[type="checkbox"] {
  margin-top: 5px;
  transform: scale(1.2);
}

.kontakt-page .checkbox-wrapper label {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.4;
}

/* Button */
.kontakt-page .submit-button {
    width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.kontakt-page .submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .kontakt-page .form-row {
    flex-direction: column;
  }
  }
  
  .success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    margin-bottom: 1rem;
    display: none;
    animation: fadein 0.5s ease-in-out;
  }
  
  @keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  