/* Grundlayout */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    text-align: left;
  }
  
  /* Überschrift oben */
  header {
    padding: 60px 20px 20px;
    text-align: center;
    border-bottom: 1px solid #333;
  }
  /* Zurück-Button */
.back-button {
    position: absolute;
    top: 0px;
    left: 20px;
    background-color: rgba(0, 128, 255, 0.15); /* leicht transparenter Farbbulb */
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    z-index: 10;
  }
  
  .back-button:hover {
    background-color: rgba(0, 128, 255, 0.3);
    transform: translateX(-2px);
  }
  
  header h1 {
    font-size: 2em;
    margin: 0;
  }
  
/* Hauptinhalt */
main {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: left !important; /* Text linksbündig ausrichten */
}

/* Abschnitte und Überschriften */
section {
  margin-bottom: 40px;
  text-align: left; /* Alle Abschnitte linksbündig */
}

section h2 {
  color: #fff;
  font-size: 1.6em;
  margin-bottom: 15px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

/* Absätze und Listen */
section p,
section ul {
  color: #ccc;
  font-size: 1em;
  line-height: 1.6;
  margin-left: 0;
  text-align: left;
}

/* Listenpunkte klar und übersichtlich */
section ul {
  padding-left: 20px;
  list-style-type: disc;
}

section ul li {
  margin-bottom: 10px;
}

/* Spezielle Anpassung für den Verantwortlichen */
section p strong,
section p {
  text-align: left !important;
  display: block;
  margin-left: 0;
}

/* Links für Kontakt und E-Mail */
section a {
  color: #007acc;
  text-decoration: none;
  font-weight: bold;
}

section a:hover {
  text-decoration: underline;
}

/* Zurück-Link optimiert */
.back-button {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 18px;
  background-color: #222;
  color: #fff;
  text-decoration: none;
  border: 1px solid #444;
  border-radius: 5px;
  transition: background-color 0.2s ease;
  font-size: 14px;
}

.back-button:hover {
  background-color: #444;
}

/* Responsives Design für kleinere Bildschirme */
@media (max-width: 600px) {
  main {
    padding: 0 10px;
  }

  section h2 {
    font-size: 1.4em;
  }

  section p {
    font-size: 0.95em;
  }

  .back-button {
    font-size: 12px;
    padding: 8px 14px;
  }
}
