/* ===== PRIVACY POLICY PAGE ===== */
    .pp-layout {
      display: grid;
      grid-template-columns: 1fr 280px;
      gap: 40px;
      padding: 40px 0 60px;
      align-items: start;
    }
    .pp-article {
      min-width: 0;
    }
    .pp-h1 {
      font-size: 40px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 36px;
      line-height: 1.15;
    }
    .pp-article h2 {
      font-size: 22px;
      font-weight: 800;
      color: var(--text);
      margin: 36px 0 16px;
      line-height: 1.3;
      scroll-margin-top: 80px;
    }
    .pp-article p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 12px;
    }
    .pp-article a {
      color: var(--blue);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .pp-article a:hover {
      color: var(--blue-dark);
    }

    /* Sidebar TOC */
    .pp-sidebar {
      position: sticky;
      top: 80px;
    }
    .pp-toc {
      background: var(--gray-bg);
      border-radius: 16px;
      padding: 24px;
    }
    .pp-toc__title {
      font-size: 16px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 16px;
    }
    .pp-toc__list {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .pp-toc__link {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
      padding: 6px 10px;
      border-radius: 8px;
      transition: background .15s, color .15s;
      display: block;
    }
    .pp-toc__link:hover {
      background: var(--white);
      color: var(--blue);
    }
    .pp-toc__num {
      font-weight: 700;
      color: var(--blue);
      margin-right: 4px;
    }

    @media (max-width: 960px) {
      .pp-layout { grid-template-columns: 1fr; }
      .pp-sidebar { position: static; }
      .pp-toc { display: none; }
      .pp-h1 { font-size: 28px; }
    }
    @media (max-width: 640px) {
      .pp-h1 { font-size: 24px; }
      .pp-article h2 { font-size: 18px; }
    }