/* ============================================
   Legal Pages (Impressum, Datenschutz, AGB)
   ============================================ */

.page-hero {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-hero-content {
  position: relative;
}
.page-hero h1 {
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.0625rem;
  max-width: 600px;
}

.legal-content {
  padding: 0 0 80px;
}

.legal-section {
  margin-bottom: 48px;
}
.legal-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.legal-section h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.legal-section p {
  margin-bottom: 16px;
  line-height: 1.7;
}
.legal-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.legal-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.legal-section a {
  color: var(--cyan);
}
.legal-section a:hover {
  text-decoration: underline;
}

.legal-section ol {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 20px;
}
.legal-section ol li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.legal-section strong {
  font-weight: 600;
  color: var(--text-primary);
}

.legal-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}
.legal-cta p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 0 48px; }
  .legal-content { padding: 0 0 60px; }
  .legal-section h2 { font-size: 1.3rem; }
}