/* Shared styling for the Terms and Privacy pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: #f3f4f6;
  color: #1f2937;
  line-height: 1.65;
  padding: 0 0 60px;
}

.legal-header {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 24px;
}
.legal-header-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.legal-header img { height: 30px; display: block; }
.legal-header a.back {
  font-size: 14px;
  color: #15803d;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
.legal-header a.back:hover { text-decoration: underline; }

.legal-wrap {
  max-width: 800px;
  margin: 28px auto 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 40px 44px 48px;
}
@media (max-width: 640px) { .legal-wrap { padding: 26px 20px 32px; margin: 16px 12px 0; } }

.legal-wrap h1 { font-size: 26px; font-weight: 700; color: #111827; margin-bottom: 6px; }
.legal-meta { font-size: 13px; color: #6b7280; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid #f3f4f6; }

.legal-wrap h2 {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin: 32px 0 10px;
  padding-top: 4px;
}
.legal-wrap h3 { font-size: 15px; font-weight: 600; color: #374151; margin: 20px 0 6px; }
.legal-wrap p  { font-size: 15px; margin-bottom: 12px; }
.legal-wrap ul { margin: 0 0 14px 22px; }
.legal-wrap li { font-size: 15px; margin-bottom: 7px; }
.legal-wrap strong { color: #111827; }
.legal-wrap a { color: #15803d; }

.legal-toc {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 28px;
}
.legal-toc ol { margin: 0 0 0 18px; }
.legal-toc li { font-size: 14px; margin-bottom: 3px; }
.legal-toc a { text-decoration: none; }
.legal-toc a:hover { text-decoration: underline; }

.callout {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 14px 18px;
  margin: 18px 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout.warn { background: #fffbeb; border-color: #fde68a; }

table.legal {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
  font-size: 14px;
}
table.legal th, table.legal td {
  text-align: left;
  padding: 9px 12px;
  border: 1px solid #e5e7eb;
  vertical-align: top;
}
table.legal th { background: #f9fafb; font-weight: 600; color: #374151; }

.legal-footer {
  max-width: 800px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}
.legal-footer a { color: #15803d; text-decoration: none; }
.legal-footer a:hover { text-decoration: underline; }
