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

:root {
  --bg: #FBF9F6;
  --surface: #FFFFFF;
  --border: #E8E3DC;
  --coral: #F08577;
  --text-primary: #1A1816;
  --text-secondary: #5C5852;
  --text-tertiary: #9A9590;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background: var(--surface);
  border-bottom: 0.5px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 22%;
  object-fit: contain;
}

.nav-logo-text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}

main {
  flex: 1;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 32px;
}

.legal-body h2 {
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--text-primary);
}

.legal-body p,
.legal-body li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.legal-body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-body a {
  color: var(--coral);
  text-decoration: none;
}

.legal-body a:hover { text-decoration: underline; }

.support-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

.support-card h2 {
  margin-top: 0;
}

.support-email {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--coral);
  margin-top: 8px;
}

footer {
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--border);
  background: var(--surface);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-img {
  width: 24px;
  height: 24px;
  border-radius: 22%;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-tertiary);
  text-decoration: none;
}

.footer-links a:hover { color: var(--text-primary); }

.footer-copy {
  font-size: 12px;
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  nav, footer { padding: 16px 24px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  h1 { font-size: 26px; }
}
