/*! Legal pages shared styles — MyTaxi */
:root {
  --yellow: #ffd000;
  --yellow2: #ffb800;
  --black: #070809;
  --text: #f7f8fa;
  --muted: #a9afb8;
  --line: rgba(255, 255, 255, 0.1);
  --max: 720px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: #070809;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}
.brand img { width: 120px; height: auto; }
h1 {
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: -0.04em;
  margin: 0 0 8px;
}
.updated {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 32px;
}
h2 {
  font-size: 18px;
  margin: 28px 0 10px;
  color: #ffe264;
}
p, li { color: #c5cad2; font-size: 15px; }
ul { padding-left: 1.2em; }
.back {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow2));
  color: #111;
  font-weight: 800;
  text-decoration: none;
}
.back:hover { text-decoration: none; opacity: 0.92; }
