:root {
  --text: #1a1a2e;
  --text-secondary: #555770;
  --accent: #6c5ce7;
  --border: #e8eaed;
  --font: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== Header (logo + "Privacy" label) ===== */
.pp-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 40px;
}

.pp-logo {
  display: block;
  text-decoration: none;
}

.pp-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
}

.pp-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ===== Main content ===== */
.pp-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.pp-main h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 28px;
}

.pp-bold {
  font-weight: 600;
  margin-bottom: 20px;
}

.pp-main h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 48px 0 16px;
}

.pp-main h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 28px 0 8px;
}

.pp-main p {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
}

.pp-main hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0 24px;
}

.pp-date {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== Footer ===== */
.pp-footer-simple {
  border-top: 1px solid var(--border);
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
  text-align: center;
}

.pp-footer-simple p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.pp-footer-simple a {
  color: var(--text-secondary);
}

.pp-footer-simple a:hover {
  color: var(--text);
  text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .pp-header {
    padding: 20px 20px;
  }

  .pp-main {
    padding: 24px 20px 60px;
  }

  .pp-main h1 {
    font-size: 1.75rem;
  }

  .pp-footer-grid {
    gap: 32px;
  }
}
