/* legal.css — standalone CSS for all legal pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #1a1a2e;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ──────────────────────────────────────────────────────────── */
.legal-header {
  border-bottom: 1px solid #e5e7eb;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

.legal-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0d2d5e;
  font-weight: 700;
  font-size: 16px;
}

.legal-header-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.legal-header-nav a {
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
  transition: color .15s;
}

.legal-header-nav a:hover { color: #0056b3; }

.legal-header-nav .back-link {
  color: #0056b3;
  font-weight: 600;
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.legal-hero {
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  padding: 40px 24px 32px;
}

.legal-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-hero h1 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: #0d2d5e;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.legal-hero .meta {
  font-size: 13px;
  color: #9ca3af;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-hero .meta span::before {
  content: '';
}

/* ── Content ─────────────────────────────────────────────────────────── */
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.legal-body h2 {
  font-size: 17px;
  font-weight: 700;
  color: #0d2d5e;
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

.legal-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin: 24px 0 8px;
}

.legal-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 14px;
}

.legal-body ul, .legal-body ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal-body li {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 6px;
}

.legal-body a { color: #0056b3; }
.legal-body a:hover { text-decoration: none; }

.legal-body strong { color: #111827; }

hr.legal-hr {
  border: none;
  border-top: 1px solid #f1f5f9;
  margin: 32px 0;
}

/* ── Notice / callout boxes ──────────────────────────────────────────── */
.notice-yellow {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 14px;
  color: #78350f;
  margin: 20px 0;
}

.notice-blue {
  background: #eff6ff;
  border-left: 4px solid #0056b3;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: #1e40af;
  margin: 20px 0;
}

.contact-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
}

.contact-box a {
  color: #0056b3;
  text-decoration: none;
  font-weight: 500;
}

/* ── Footer ──────────────────────────────────────────────────────────── */
.legal-footer {
  border-top: 1px solid #e5e7eb;
  padding: 28px 24px;
  background: #f8fafc;
}

.legal-footer-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
}

.legal-footer-links a {
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
}

.legal-footer-links a:hover { color: #0056b3; }

.legal-footer-copy {
  font-size: 12px;
  color: #9ca3af;
}

/* ── Sitemap specific ────────────────────────────────────────────────── */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 32px;
  padding: 40px 24px 80px;
  max-width: 960px;
  margin: 0 auto;
}

.sitemap-col h2 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #9ca3af;
  margin-bottom: 14px;
}

.sitemap-col ul {
  list-style: none;
  padding: 0;
}

.sitemap-col ul li {
  margin-bottom: 9px;
}

.sitemap-col ul li a {
  font-size: 14px;
  color: #0056b3;
  text-decoration: none;
  font-weight: 500;
}

.sitemap-col ul li a:hover { text-decoration: underline; }

.sitemap-col ul li .sub {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
}

@media (max-width: 600px) {
  .legal-header-nav .hide-mobile { display: none; }
  .legal-hero h1 { font-size: 22px; }
}
