/* Hauptcontainer analog zu ContainerAngebot */
.ContainerImpressum {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
  padding-top: min(10rem, 8%);
}

.ContainerImpressum-Inhalt {
  width: 100%;
  max-width: 1200px;
}

.Impressum-Header h1 {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  color: #333;
}

/* Der Button zum Aufklappen */
.Impressum-Akkordeon {
  width: 100%;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.Impressum-Button {
  padding: 1.5rem;
  background-color: #0f4c8e;
  color: white;
  font-weight: bold;
  cursor: pointer;
  list-style: none; /* Entfernt den Standard-Pfeil */
  text-align: center;
  transition: background 0.3s;
}

.Impressum-Button:hover {
  background-color: #00a078;
}

/* Das Grid innerhalb des ausgeklappten Bereichs */
.Impressum-Grid {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  /* Responsives Grid: passt sich automatisch an */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Die einzelnen Kacheln im Impressum */
.Impressum-Card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #eee;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.Impressum-Card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.Impressum-Card h2 {
  color: #0f4c8e;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.Impressum-Card p {
  line-height: 1.6;
  font-size: 0.85rem;
  color: #555;
}

.Impressum-Card a {
  color: #0f4c8e;
  text-decoration: none;
}
