:root {
  --primary: #2563eb;
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --radius: 18px;
}

/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* HEADER */
#header {
  height: 80px;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid #e5e7eb;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

#HIcon { width: 46px; }

#hamburger {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f1f5f9;
  font-size: 1.4rem;
  cursor: pointer;
}

/* NAV */
#nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: white;
  padding: 80px 20px;
  transition: .3s ease;
  box-shadow: -20px 0 40px rgba(0,0,0,.2);
  z-index: 1000;
}

#nav.active { right: 0; }

#navClose {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

#nav ul { list-style: none; }
#nav li { margin-bottom: 15px; }

#nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

/* MAIN */
.policy-container {
  max-width: 900px;
  margin: 60px auto;
  background: var(--card);
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.policy-container h2 {
  margin-bottom: 10px;
}

.last-updated {
  color: var(--muted);
  margin-bottom: 40px;
}

.policy-section {
  margin-bottom: 35px;
}

.policy-section h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.policy-section p {
  line-height: 1.6;
  margin-bottom: 10px;
}

.policy-section ul {
  padding-left: 20px;
  line-height: 1.6;
  color: var(--muted);
}

/* FOOTER */
#footer {
  text-align: center;
  padding: 40px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .policy-container {
    margin: 30px 16px;
    padding: 30px;
  }
}
