/* Shared styles for Restova legal pages */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  background: #000;
  color: #d1d5db;
  line-height: 1.65;
  min-height: 100vh;
  padding: 80px 24px;
}
.wrap { max-width: 720px; margin: 0 auto; }
h1 { color: #fff; font-size: 36px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
h2 { color: #fff; font-size: 22px; font-weight: 600; margin-top: 40px; margin-bottom: 14px; letter-spacing: -0.01em; }
.meta { color: #6b7280; font-size: 14px; margin-bottom: 40px; }
section { margin-bottom: 32px; }
p { margin-bottom: 14px; color: #9ca3af; }
ul { padding-left: 24px; margin-bottom: 14px; }
li { margin-bottom: 10px; color: #9ca3af; }
li strong { color: #e5e7eb; font-weight: 600; }
a { color: #fbbf24; text-decoration: none; }
a:hover { color: #fcd34d; text-decoration: underline; }
.footer {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid #1f2937;
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.footer a { color: #6b7280; }
.footer a:hover { color: #fff; text-decoration: none; }
.brand { color: #fff; font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.brand-mark { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 60px; }
.brand-dot { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, #f59e0b, #d97706); }
@media (max-width: 600px) {
  body { padding: 50px 20px; }
  h1 { font-size: 28px; }
  h2 { font-size: 19px; }
}
