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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #111827;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

/* ===== Nav ===== */
.legal-nav {
  padding: 16px 24px;
  border-bottom: 1px solid #E5E7EB;
}

.legal-nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #9B2335;
  text-decoration: none;
  letter-spacing: -0.5px;
}

/* ===== Content ===== */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.legal-updated {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
  color: #111827;
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
  color: #374151;
}

.legal-content p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 15px;
  color: #374151;
  margin-bottom: 8px;
}

.legal-content a {
  color: #9B2335;
  text-decoration: none;
  font-weight: 500;
}

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

/* ===== Support Contact ===== */
.support-contact {
  padding: 20px 24px;
  background: #F9FAFB;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  margin-bottom: 24px;
}

.support-contact p {
  margin-bottom: 0;
  font-size: 16px;
}

/* ===== FAQ Accordions ===== */
.faq {
  margin-bottom: 24px;
}

details {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}

details summary {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F9FAFB;
  transition: background 0.15s;
}

details summary:hover {
  background: #F3F4F6;
}

details summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: #6B7280;
  transition: transform 0.2s;
}

details[open] summary::after {
  content: '-';
}

details summary::-webkit-details-marker {
  display: none;
}

details p {
  padding: 0 20px 16px;
  margin-top: 4px;
}

/* ===== Footer ===== */
.legal-footer {
  padding: 32px 24px;
  text-align: center;
  background: #111827;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.legal-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.legal-footer a:hover {
  color: #FFFFFF;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* ===== Mobile ===== */
@media (max-width: 600px) {
  .legal-content h1 { font-size: 28px; }
  .legal-content { padding: 32px 16px 64px; }
}
