/* Globales Layout für schwarze Oberfläche mit weißem Text */
.dark-body {
  margin: 0;
  background-color: white;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  padding: 1em;
  display: flex;
  flex-direction: column;
}

/* Kopfzeilenbild */
.header-img {
  max-height: 50vh;
  max-width: 100%;    /* maximale Breite: 100% des Containers */
  height: auto;
  width: auto;
  display: block;
  margin-bottom: 1em;
}

/* Stil für die Schaltfläche zum geschützten Bereich */
.cta-button {
  display: inline-block;
  padding: 0.5em 1em;
  background-color: #005a9c;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 1em;
}

/* Optional: Hover-Effekt */
.cta-button:hover {
  background-color: #004070;
  cursor: pointer;
}

.info-box {
  background-color: #f9f9f9;    /* dezenter heller Hintergrund */
  border: 2px solid #d0d0d0;   /* klare, aber zurückhaltende Umrandung */
  border-radius: 6px;
  padding: 1em 1.5em;
  margin: 1em 0 2em 0;
  text-align: justify;         /* Blocksatz */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-img {
  display: block;          /* Block-Element */
  max-height: 25vh;        /* Höhe fixieren */
  height: auto;            /* proportional */
  width: auto;             /* proportional */
  max-width: 100%;         /* nicht über Container hinaus */
  margin-left: auto;
  margin-right: auto;      /* horizontal zentrieren */
}