/* Hauptcontainer */
.ContainerKontakt {
  display: flex;
  flex-direction: column;
  align-items: center; /* Zentriert den Inhalt horizontal */
  box-sizing: border-box;
  padding-top: min(10rem, 8%);
}

/* Überschrift oben */
.ContainerKontakt-Label {
  margin-bottom: 2rem;
  text-align: center;
}

/* Wrapper für die Karte, um die Breite zu begrenzen */
.ContainerKontakt-Wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Die Kontaktkarte (ehemals linker Kasten) */
.ContainerKontakt-Beschreibung {
  width: 100%;
  max-width: 650px; /* Begrenzt die Breite für bessere Lesbarkeit */
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  line-height: 1.6;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ContainerKontakt-Beschreibung:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Titel & Job */
.ContainerKontakt-Beschreibung-Label {
  margin-bottom: 0.2rem;
  font-size: 1.8rem;
}

.ContainerKontakt-Beschreibung-Job {
  color: #0f4c8e;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.ContainerKontakt-Beschreibung-Job strong {
  color: #0f4c8e;
}

/* Text */
.ContainerKontakt-Beschreibung-GetToKnow {
  margin-bottom: 2rem;
  color: #444;
}

/* Info-Liste */
.ContainerKontakt-Beschreibung-Infos {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.ContainerKontakt-Beschreibung-Infos li {
  background: #f9f9f9;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 0.8rem;
  border-left: 4px solid #0f4c8e; /* Kleiner Akzent in deiner Hausfarbe */
}

/* Kontaktbereich unten */
.ContainerKontakt-Beschreibung-Contact {
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}

.ContainerKontakt-Beschreibung-Contact p {
  margin: 0.5rem 0;
}

.ContainerKontakt-Beschreibung-Contact a {
  color: #0f4c8e;
  text-decoration: none;
}

/* Mobile Anpassung */
@media (max-width: 600px) {
  .ContainerKontakt-Beschreibung {
    padding: 1.5rem;
  }
}
