/* Basis-Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f7f7f7;
}

a {
  color: #1b5291;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  background-color: #1b5291;
  color: white;
  padding: 20px;
  text-align: center;
}

.site-header h1 {
  margin: 0;
  font-size: 1.5em;
}

/* Content */
.content {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

.content section {
  margin-bottom: 30px;
}

.content section h2 {
  margin-top: 0;
  color: #1b5291;
  font-size: 1.25em;
}

/* Spezieller Stil für E-Mail-Schutztext */
.protected-email {
  color: #555;
  font-style: italic;
}

/* Fußzeile */
.site-footer {
  background-color: #1b5291;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9em;
}

/* Listen im Haftungsbereich */
.content .haftung ol {
  padding-left: 1.2em;
  margin-top: 0.5em;
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
  .content {
    margin: 20px 10px;
  }
}
