/* Überschreibt die globalen main-Stile für die Datenschutzerklärung */
main.privacy-content {
  display: block;          /* Flex-Layout ausschalten */
  padding: 20px;           /* Padding innen bleibt gleich */
  margin: 20px auto;       /* Oben/unten 20px; horizontal automatisch (gleichmäßiger Rand) */
  max-width: 3000px;       /* Maximale Breite, um großen Bildschirmen gerecht zu werden */
  width: 95%;              /* Nutzt 95% der verfügbaren Bildschirmbreite */
}

/* Allgemeine Einstellungen für den Datenschutzerklärungsbereich */
.privacy-content {
  line-height: 1.6;
  font-family: Arial, sans-serif;
  text-align: left;        /* Text linksbündig ausrichten */
}

/* Überschriften in Grün (#09cc94) mit ausreichend Abstand */
.privacy-content h1,
.privacy-content h2,
.privacy-content h3 {
  color: #09cc94;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: left;
}

.privacy-content h1 {
  font-size: 2.5em;
}

.privacy-content h2 {
  font-size: 2em;
  border-bottom: 2px solid #09cc94;
  padding-bottom: 5px;
}

.privacy-content h3 {
  font-size: 1.5em;
  margin-left: 10px;
}

/* Absätze */
.privacy-content p {
  margin-bottom: 15px;
  text-align: left;
}

/* Listen anpassen: Keine zusätzlichen Marker, da die Nummer bereits im Text steht */
.privacy-content ul {
  list-style: none;
  margin-bottom: 15px;
  padding-left: 0;
}

/* Kleiner Abstand zwischen den Listenelementen */
.privacy-content ul li {
  margin-bottom: 5px;
}

/* Zusätzliche Einrückung für Unterabschnitte */
.sub-section {
  margin-left: 20px;
  margin-bottom: 15px;
}

.privacy-content a {
  color: #09cc94;           /* Gleicher Grünton wie Überschriften */
  text-decoration: none;    /* Keine Unterstreichung im Normalzustand */
  border-bottom: 1px dotted transparent; /* Optional: ein dezenter "Hover-Indikator" */
}

.privacy-content a:visited {
  color: #09cc94;           /* Auch besuchte Links im gleichen Farbton */
}

.privacy-content a:hover,
.privacy-content a:focus {
  color: #0cb385;           /* Leicht abgesetzter Grünton beim Hover */
  text-decoration: underline;  /* Unterstreichung beim Hover für bessere Lesbarkeit */
  border-bottom-color: #0cb385; /* Optional: passt den dezenten Indikator an */
}


/* Responsive Anpassungen für Smartphones und Tablets */
@media (max-width: 768px) {
  main.privacy-content {
    padding: 10px;
    margin: 10px auto;
    width: 98%;
  }
  
  .privacy-content h1 {
    font-size: 2em;
  }
  
  .privacy-content h2 {
    font-size: 1.5em;
  }
  
  .privacy-content h3 {
    font-size: 1.2em;
  }
}
