/* Leistungen */

.leistungen-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
  margin-top: 2rem;
}

.leistung-card {
  flex: 1 1 260px;
  max-width: 330px;
  background-color: #f7f7f7;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leistung-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.leistung-card img {
  width: 100%;
  /* KORREKTUR: max-width: 120px entfernt, damit Bilder die volle Breite der Karte einnehmen können. */
  /* max-width: 120px; */
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px; /* optional, für Bildharmonie */
}

.leistung-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #222;
}

.leistung-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .leistungen-container {
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
  }

  .leistung-card {
    width: 100%;
    max-width: 95%;
  }
}
