/* legal.css — Shared styles for Impressum, Datenschutz, AGB */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a2e;
  background: #fafafa;
}

.legal-header {
  background: #1a1a2e;
  color: white;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-header .brand {
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.legal-header nav a {
  color: #66d9ef;
  text-decoration: none;
  font-size: 14px;
}

.legal-header nav a:hover {
  text-decoration: underline;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 24px 120px;
}

.legal-content h1 {
  font-size: 36px;
  margin: 0 0 8px;
  color: #1a1a2e;
}

.legal-content > p em {
  color: #666;
  font-size: 14px;
  font-style: italic;
}

.legal-content h2 {
  font-size: 22px;
  margin-top: 40px;
  color: #1e2a45;
  border-bottom: 2px solid #e0e5ea;
  padding-bottom: 8px;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 28px;
  color: #2a3552;
}

.legal-content p, .legal-content ul, .legal-content ol {
  font-size: 15px;
  color: #333;
}

.legal-content ul, .legal-content ol {
  padding-left: 24px;
}

.legal-content address {
  font-style: normal;
  padding: 12px 16px;
  background: white;
  border-left: 4px solid #1e2a45;
  border-radius: 4px;
  margin: 12px 0;
}

.legal-content strong {
  color: #1a1a2e;
}

.legal-content a {
  color: #0066cc;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #004a99;
}

.legal-content code {
  background: #eef1f5;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  color: #c7254e;
}

.legal-content .legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  background: white;
  font-size: 14px;
}

.legal-content .legal-table th,
.legal-content .legal-table td {
  padding: 10px 14px;
  border: 1px solid #e0e5ea;
  text-align: left;
}

.legal-content .legal-table th {
  background: #f0f3f8;
  font-weight: 600;
}

.legal-footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #e0e5ea;
  color: #666;
  font-size: 13px;
  text-align: center;
}

/* Hervorgehobene "AUSFUELLEN"-Hinweise */
.legal-content p:has(strong:contains('<')) strong {
  background: #fff3cd;
  padding: 1px 4px;
  border-radius: 3px;
  border: 1px dashed #856404;
}
