
/* =========================================================
   legal.css – Impressum, Privacy & Terms
   ========================================================= */

body {
  background: #fafcff;
  color: #0f172a;
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

/* ---------- Main Document ---------- */

.legal-page {
  max-width: 850px;
  margin: 64px auto;
  padding: 0 24px;
}

/* ---------- Headings ---------- */

.legal-page h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 32px;
  line-height: 1.2;
}

.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 14px;
}

/* ---------- Text ---------- */

.legal-page p {
  margin: 0 0 18px;
  color: #475569;
  font-size: 1rem;
}

.legal-page strong {
  color: #0f172a;
}

/* ---------- Lists ---------- */

.legal-page ul,
.legal-page ol {
  margin: 0 0 24px 24px;
  padding: 0;
}

.legal-page li {
  margin-bottom: 8px;
  color: #475569;
}

/* ---------- Links ---------- */

.legal-page a {
  color: #2563eb;
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

/* ---------- Divider ---------- */

.legal-page h2:not(:first-of-type) {
  padding-top: 8px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

/* ---------- Footer ---------- */

.legal-footer {
  margin-top: 80px;
  padding: 32px 20px 40px;

  text-align: center;

  border-top: 1px solid rgba(148, 163, 184, 0.2);

  color: #64748b;
  font-size: 0.9rem;
}

.legal-footer a {
  color: #475569;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.legal-footer a:hover {
  color: #2563eb;
  text-decoration: underline;
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {
  .legal-page {
    margin: 40px auto;
    padding: 0 20px;
  }

  .legal-page h1 {
    font-size: 2rem;
  }

  .legal-page h2 {
    font-size: 1.15rem;
  }

  .legal-page p,
  .legal-page li {
    font-size: 0.97rem;
  }
}
