/* ==========================================================================
   Service Cards – Hintergrund grün, zwingend weiße Schrift
   ========================================================================== */

.service-card {
  background: var(--gradient-green) !important; /* Karten grün */
  border-radius: 12px !important;
  padding: 30px 20px !important;
  text-align: center !important;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px !important;
  transition: transform 0.3s ease !important, box-shadow 0.3s ease !important;
  height: 240px !important;
  width: 100% !important;
  max-width: 390px !important;
  margin: 0 auto !important;
  color: white !important; /* Grundfarbe der Schrift */
}

/* Alle Elemente innerhalb der Karte zwingend weiß */
.service-card * {
  color: white !important;
}

/* Speziell für <p>-Tags, falls sie irgendwo überschrieben werden */
.service-card p {
  color: white !important;
}

/* Hover-Effekt beibehalten */
.service-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 12px 32px !important;
}

/* Icons innerhalb der Karte */
.icon-circle i {
  color: white !important;
}

/* Carousel Controls auf dunklem Hintergrund */
.carousel-control-prev i,
.carousel-control-next i {
  color: white !important;
}

.form-control {
    padding: .75rem !important;
}
    
.app-section {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}