/* ==========================================================================
   IMPRESSUM SEITEN-STYLING
   ========================================================================== */

/* Haupt-Container für den Textbereich */
.impressum-container {
  padding: 60px 40px 20px 40px;
  color: #2c523e; /* Schickes dunkelgrün passend zum Verein */
  line-height: 1.6;
}

/* Große Hauptüberschrift "Impressum" */
.impressum-container h1 {
  font-family: 'Garamond', serif;
  font-size: 3rem;
  margin-bottom: 40px;
  border-bottom: 2px solid rgba(44, 82, 62, 0.2);
  padding-bottom: 10px;
}

/* Einzelne Inhalts-Abschnitte */
.impressum-section {
  margin-bottom: 30px;
  font-size: 1.15rem;
}

/* Zwischenüberschriften (z.B. Anschrift, Haftungsausschluss) */
.impressum-section h3 {
  font-family: 'Garamond', serif;
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 15px;
}

/* Besonderer Bereich für den längeren Rechtstext */
.disclaimer p {
  text-align: justify; /* Blocksatz für ein ruhiges Schriftbild im Rechtstext */
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* Die Grußformel "Der Vorstand" am Ende */
.signature {
  font-family: 'Garamond', serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 40px !important;
}

/* ==========================================================================
   RESPONSIVE ANPASSUNGEN (MOBILGERÄTE)
   ========================================================================== */
@media screen and (max-width: 900px) {
  .impressum-container {
    padding: 30px 20px 10px 20px;
  }
  
  .impressum-container h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  
  .impressum-section h3 {
    font-size: 1.4rem;
  }

  .disclaimer p {
    text-align: left; /* Auf Handys liest sich Linksbündig oft besser als Blocksatz */
  }
}