@import url('https://fonts.loli.net/css2?family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --border: #e8e8e8;
  --text: #0f0f0f;
  --muted: #737373;
  --accent: #0066ff;
  --radius-sm: 6px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  color: #333;
  background: var(--bg);
  min-height: 100vh;
}

.topbar {
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.lang-switch {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
}

.lang-switch a {
  color: var(--muted);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.lang-switch a:hover { background: #f7f7f7; color: var(--text); }
.lang-switch a.active { color: var(--text); font-weight: 600; }
.lang-switch .sep { margin: 0 4px; color: #d0d0d0; }

.legal-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 48px;
}

.legal-main h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}

.legal-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.legal-main h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 12px;
}

.legal-main p, .legal-main li {
  font-size: 14px;
  margin-bottom: 10px;
}

.legal-main ul {
  padding-left: 1.25em;
  margin-bottom: 12px;
}

.legal-main a { color: var(--accent); text-decoration: none; }
.legal-main a:hover { text-decoration: underline; }

.site-footer {
  background: #0f0f0f;
  color: #9ca3af;
  text-align: center;
  padding: 24px 16px;
  font-size: 12px;
  line-height: 1.9;
}

.site-footer a { color: #9ca3af; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer .footer-company { color: #d1d5db; font-weight: 500; font-size: 13px; }
.site-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
