/* ==========================================================================
   DATENSCHUTZ SEITEN-STYLING
   ========================================================================== */

.datenschutz-container {
  padding: 60px 40px 20px 40px;
  color: #2c523e; /* Vereinsgrün */
  line-height: 1.6;
}

.datenschutz-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;
}

.datenschutz-section {
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.datenschutz-section h3 {
  font-family: 'Garamond', serif;
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 15px;
  border-left: 4px solid #2c523e;
  padding-left: 12px;
}

.datenschutz-container p {
  margin-bottom: 15px;
  text-align: justify;
}

/* Visuelle Box für die Kontaktdaten */
.kontakt-block {
  background: rgba(44, 82, 62, 0.05);
  padding: 20px;
  border-radius: 6px;
  border: 1px solid rgba(44, 82, 62, 0.1);
  display: inline-block;
  min-width: 320px;
}

.kontakt-block a {
  color: #2c523e;
  font-weight: bold;
  text-decoration: none;
}

.kontakt-block a:hover {
  text-decoration: underline;
}

/* Wichtige hervorgehobene Textpassagen */
.highlight-text {
  font-style: italic;
  background: rgba(44, 82, 62, 0.03);
  padding: 15px;
  border-left: 3px dashed #2c523e;
}

/* Listenformatierungen */
.definitionen-liste, .daten-liste, .rechte-liste {
  margin: 15px 0 25px 20px;
  padding: 0;
}

.definitionen-liste li, .daten-liste li, .rechte-liste li {
  margin-bottom: 10px;
}

/* ==========================================================================
   RESPONSIVE ANPASSUNGEN (MOBILGERÄTE)
   ========================================================================== */
@media screen and (max-width: 900px) {
  .datenschutz-container {
    padding: 30px 20px 10px 20px;
  }
  
  .datenschutz-container h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  
  .datenschutz-section h3 {
    font-size: 1.3rem;
  }

  .datenschutz-container p {
    text-align: left;
  }
  
  .kontakt-block {
    width: 100%;
    box-sizing: border-box;
  }
}
/* Spezieller Rahmen für den Hoster-Abschnitt (Strato) */
.hoster-box {
  background: rgba(44, 82, 62, 0.02);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #2c523e;
}