/* Shared OneRide legal-page styles */
:root {
  --primary: #1a365d;
  --accent: #F7A726;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e5e7eb;
  --highlight: #fff7e6;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
.header {
  background: var(--primary);
  color: #fff;
  padding: 28px 20px;
}
.header-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.brand {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.brand-tag {
  font-size: 0.85em;
  opacity: 0.85;
}
nav.subnav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 0.9em;
}
nav.subnav-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
nav.subnav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
nav.subnav a:hover {
  text-decoration: underline;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  background: var(--card);
  min-height: calc(100vh - 180px);
}
h1 {
  color: var(--primary);
  font-size: 2em;
  margin-bottom: 8px;
}
.effective-date {
  color: var(--muted);
  font-size: 0.9em;
  margin-bottom: 28px;
}
h2 {
  color: var(--primary);
  font-size: 1.35em;
  margin: 32px 0 12px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 6px;
}
h3 {
  color: var(--text);
  font-size: 1.1em;
  margin: 20px 0 8px;
}
p { margin-bottom: 14px; }
ul, ol { margin: 10px 0 14px 28px; }
li { margin-bottom: 6px; }
table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 0.95em;
}
th, td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}
th {
  background: var(--primary);
  color: #fff;
}
.highlight {
  background: #e6f0fb;
  border-left: 4px solid var(--primary);
  padding: 14px 16px;
  border-radius: 6px;
  margin: 16px 0;
}
.notice {
  background: var(--highlight);
  border-left: 4px solid var(--accent);
  padding: 14px 16px;
  border-radius: 6px;
  margin: 16px 0;
}
.contact-box {
  background: #f3f4f6;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}
.footer {
  background: #0f172a;
  color: #cbd5e1;
  font-size: 0.85em;
  padding: 20px;
  text-align: center;
}
.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  h1 { font-size: 1.6em; }
  .container { padding: 24px 16px 60px; }
}
