/*
 * ─── LEGAL PAGE STYLES ───────────────────────────────────────────────────────
 * Shared styles for legal document pages (privacy-policy, terms-of-service).
 * Requires brand.css to be loaded first for CSS variable definitions.
 * ─────────────────────────────────────────────────────────────────────────────
 */

body {
  line-height: 1.8;
  color: #000000;
  background-color: #ffffff;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: var(--primary);
}

h2 {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 5px;
}

h3 {
  font-size: 1.3em;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--primary);
}

p {
  margin-bottom: 15px;
}

ul {
  margin-left: 30px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 8px;
}

ol {
  margin-left: 30px;
  margin-bottom: 15px;
}

ol li {
  margin-bottom: 10px;
}

.last-updated {
  color: #666;
  font-style: italic;
  margin-bottom: 30px;
}

.back-link {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  background-color: var(--accent);
  color: var(--text-on-accent);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: transform 0.2s;
}

.back-link:hover {
  transform: translateY(-2px);
}

.contact {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 5px;
  margin-top: 30px;
}
