/* Shared styles for legal pages */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Arimo', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #192d91;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-header { background: #fff; box-shadow: 0 1px 6px rgba(0,0,0,.12); }
.header-inner {
  max-width: 990px;
  margin: 0 auto;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
}
.header-logo img { width: 189px; height: 43px; display: block; }
.header-cta {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #eaa83b;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 4px;
}
.header-cta:hover { background: #cf9130; }
.page {
  flex: 1;
  width: 100%;
  max-width: 900px;
  margin: 36px auto 56px;
  padding: 0 15px;
}
.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  padding: 44px 48px 52px;
}
.card h1 { font-size: 34px; color: #192d91; margin-bottom: 6px; }
.card .updated {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
}
.card h2 {
  font-size: 20px;
  color: #192d91;
  margin: 30px 0 10px;
}
.card p, .card li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}
.card ul { margin: 0 0 12px 24px; }
.card li { margin-bottom: 6px; }
.card a { color: #192d91; }
.site-footer {
  background: #101f66;
  color: rgba(255,255,255,.75);
  font-family: 'Roboto', Arial, sans-serif;
  padding: 34px 15px 40px;
}
.footer-inner { max-width: 990px; margin: 0 auto; }
.footer-disclaimer {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
  text-align: center;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 14px;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .header-logo img { width: 150px; height: 34px; }
  .card { padding: 28px 20px 36px; }
  .card h1 { font-size: 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
