/* ==========================================
   LEGAL PAGES CSS – reiner Text, weißer Hintergrund
   Kein Design, keine Boxen, keine Farben
   ========================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #222;
  background: #fff;
}

a { color: #222; text-decoration: underline; }
a:hover { color: #000; }

/* HEADER */
.legal-header {
  border-bottom: 1px solid #ccc;
  padding: 12px 0;
  background: #fff;
}
.legal-header-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.legal-logo-link {
  font-size: 14px;
  font-weight: bold;
  color: #222;
  text-decoration: none;
}
.legal-back-link {
  font-size: 13px;
  color: #444;
  text-decoration: none;
}
.legal-back-link:hover { text-decoration: underline; }

/* MAIN */
.legal-main { padding: 28px 0 50px; }
.legal-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TITLE */
.legal-title {
  font-size: 17px;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
}

/* TEXT */
.legal-text {
  font-size: 14px;
  color: #222;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* FOOTER */
.legal-footer {
  border-top: 1px solid #ccc;
  padding: 12px 0 20px;
}
.legal-footer-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #888;
}
.legal-footer-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.legal-footer-links a {
  font-size: 12px;
  color: #444;
  text-decoration: underline;
}
.legal-footer-links a:hover { color: #000; }
.legal-footer-links span { color: #bbb; }

@media (max-width: 600px) {
  .legal-content, .legal-header-inner, .legal-footer-inner { padding: 0 14px; }
  .legal-footer-inner { flex-direction: column; gap: 5px; }
}
