/* Impressum-spezifisches Styling */

#privacy-policy-wrapper {
  display: flex;
  justify-content: center;
  align-content: center;
}

main.privacy-policy {
  max-width: 1000px;
  margin: 50px min(10px);
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

main.privacy-policy h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #2a2a72;
  font-weight: 700;
}

main.privacy-policy p {
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.6;
}

/* Optional für responsive Anpassung */
@media (max-width: 768px) {
  main.privacy-policy {
    padding: 20px;
  }

  main.privacy-policy h1 {
    font-size: 2rem;
  }
}
