.privacy-page {
  max-width: 78rem;
  margin: 0 auto;
  padding: 4rem 3rem 8rem;
}

.privacy-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 4rem;
}

.privacy-back {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.4rem;
  color: var(--dim);
}
.privacy-back:hover { color: var(--ink); }

.privacy-lang-switch {
  display: flex;
  gap: 0.4rem;
}
.privacy-lang-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem;
  font-weight: 600;
  background: transparent;
  border: 0.1rem solid var(--border);
  color: var(--dim);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.privacy-lang-btn:hover { border-color: var(--accent); color: var(--ink); }
.privacy-lang-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.privacy-content h1 {
  font-size: 3rem;
  margin-bottom: 0.8rem;
}

.privacy-updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.3rem;
  color: var(--dim);
  margin-bottom: 3.2rem;
}

.privacy-content h2 {
  font-size: 1.9rem;
  margin-top: 3.2rem;
  margin-bottom: 1.2rem;
  text-transform: none;
  letter-spacing: normal;
}

.privacy-content p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.privacy-content ul {
  margin: 0 0 1.4rem 2rem;
}
.privacy-content li {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.privacy-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

@media (max-width: 640px) {
  .privacy-page { padding: 3rem 2rem 6rem; }
  .privacy-content h1 { font-size: 2.4rem; }
}
