/* Einfache, saubere Gestaltung für Impressum & Datenschutz */

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  color: #222;
}

.legal-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}

h2 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  color: #333;
}

p, li {
  margin-bottom: 1rem;
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.back-link {
  margin-top: 2rem;
  text-align: right;
}



/* === Firmenlogo === */


.legal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ddd;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: nowrap; /* verhindert Zeilenumbruch */
}

.legal-header h1 {
  margin: 0;
  font-size: 2rem;
  color: #222;
  flex: 1; /* sorgt dafür, dass Text den Platz nutzt */
}

.legal-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  margin-left: 1rem;
}

.legal-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsiv für kleine Bildschirme */
@media (max-width: 600px) {
  .legal-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .legal-logo {
    margin-left: 0;
    margin-top: 1rem;
    width: 100px;
  }
}
