*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue:       #2563EB;
  --blue-light: #3B82F6;
  --blue-dark:  #1D4ED8;
  --bg:         #F8FAFC;
  --text:       #0F172A;
  --muted:      #64748B;
  --white:      #FFFFFF;
  --navy:       #0F172A;
}
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); }

nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 38px; height: 38px; object-fit: contain; border-radius: 10px; }
.nav-logo span { font-size: 20px; font-weight: 800; color: var(--blue); }
.nav-back {
  background: var(--blue); color: var(--white);
  padding: 10px 22px; border-radius: 10px;
  text-decoration: none; font-size: 14px; font-weight: 700;
}
.nav-back:hover { background: var(--blue-dark); }

.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 60px 5%;
  text-align: center;
}
.page-hero h1 { font-size: clamp(24px, 4vw, 40px); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.page-hero p { font-size: 14px; color: rgba(255,255,255,0.75); }

.legal-body { max-width: 820px; margin: 0 auto; padding: 60px 5%; }
.legal-body h2 { font-size: 18px; font-weight: 700; color: var(--text); margin: 36px 0 12px; border-left: 4px solid var(--blue); padding-left: 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.legal-body ul { padding-left: 20px; margin-bottom: 14px; }
.legal-body ul li { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.legal-body a { color: var(--blue); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-body .last-updated {
  display: inline-block;
  background: var(--bg); border: 1px solid #E2E8F0;
  padding: 8px 16px; border-radius: 8px;
  font-size: 12px; color: var(--muted); margin-bottom: 36px;
}

footer { background: var(--navy); padding: 40px 5%; text-align: center; }
footer p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
footer a { color: rgba(255,255,255,0.65); text-decoration: none; margin: 0 12px; font-size: 13px; }
footer a:hover { color: var(--white); }
