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

:root {
  --blue: #0435AC;
  --blue-dark: #032A8A;
  --blue-light: #e8eef8;
  --dark: #1a1a1a;
  --text: #4a4a4a;
  --text-muted: #717171;
  --white: #ffffff;
  --bg: #f5f7f9;
  --border: #e2e5e9;
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.legal-container { width: 100%; max-width: 800px; margin: 0 auto; padding: 0 16px; }

.legal-header { background: var(--white); border-bottom: 1px solid var(--border); padding: 14px 0; position: sticky; top: 0; z-index: 10; }
.legal-header .legal-container { display: flex; align-items: center; justify-content: space-between; }
.legal-logo img { height: 28px; }
.legal-nav a { font-size: 13px; font-weight: 600; color: var(--blue); }

.legal-main { flex: 1; padding: 32px 0 48px; }
.legal-content h1 { font-size: 26px; color: var(--dark); margin-bottom: 4px; line-height: 1.3; }
.legal-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }

.legal-company-info { background: var(--blue-light); border-left: 3px solid var(--blue); border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 28px; }
.legal-company-info p { font-size: 13px; color: var(--dark); margin-bottom: 2px; line-height: 1.5; }
.legal-company-info p:last-child { margin-bottom: 0; }

.legal-content section { margin-bottom: 28px; }
.legal-content h2 { font-size: 17px; color: var(--dark); margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.legal-content p { font-size: 14px; margin-bottom: 10px; }
.legal-content ul { margin: 8px 0 12px 20px; }
.legal-content li { font-size: 14px; margin-bottom: 6px; padding-left: 4px; }

.contact-box { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; margin-top: 10px; }
.contact-box p { font-size: 14px; margin-bottom: 4px; }
.contact-box p:last-child { margin-bottom: 0; }

.legal-footer { background: #111827; color: #9ca3af; padding: 20px 0; text-align: center; }
.legal-footer p { font-size: 12px; margin-bottom: 4px; }
.legal-footer-links { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.legal-footer-links a { color: #9ca3af; font-size: 12px; }
.legal-footer-links a:hover { color: var(--white); }
.legal-footer-links span { color: #4b5563; font-size: 12px; }

@media (min-width: 600px) {
  .legal-container { padding: 0 24px; }
  .legal-content h1 { font-size: 30px; }
  .legal-content h2 { font-size: 18px; }
  .legal-content p, .legal-content li { font-size: 15px; }
  .legal-main { padding: 40px 0 56px; }
}
