/* ============================================================
   privacy-policy.css — /privacy-policy
   Depends on: pearl.css
   
   Design: Clean legal document aesthetics — readable, well-
   spaced, with brand hero and interactive TOC sidebar.
   NOT loaded with service-page.css (different layout).
============================================================ */

/* =============================================
   HERO
============================================= */
.pp-hero {
  background: linear-gradient(135deg, #0d1a3a 0%, #1e398f 60%, #2a0845 100%);
  position: relative;
  overflow: hidden;
  padding: 140px 40px 90px;
  min-height: 38vh;
  display: flex;
  align-items: center;
}

.pp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.pp-blob--1 {
  width: 420px;
  height: 420px;
  top: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(199, 0, 126, 0.2), transparent 70%);
  animation: blobPulse1 13s ease-in-out infinite;
}

.pp-blob--2 {
  width: 320px;
  height: 320px;
  bottom: -60px;
  right: -60px;
  background: radial-gradient(circle, rgba(30, 57, 143, 0.25), transparent 70%);
  animation: blobPulse2 16s ease-in-out infinite;
}

.pp-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.pp-hero-inner {
  max-width: 800px;
  padding: 50px 20px 60px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pp-hero-inner .breadcrumb {
  justify-content: center;
  margin-bottom: 20px;
}

.pp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 180, 41, 0.15);
  border: 1px solid rgba(240, 180, 41, 0.35);
  color: #f0b429;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pp-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  font-family: "Playfair Display", serif;
}

.pp-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.pp-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.pp-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 14px;
  border-radius: 20px;
}

.pp-meta i {
  color: var(--pink);
  font-size: 0.72rem;
}

.pp-hero-slant {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.pp-hero-slant svg {
  display: block;
  width: 100%;
}

/* =============================================
   LAYOUT
============================================= */
.pp-content-wrap {
  background: #fff;
  padding: 60px 40px 80px;
}

.pp-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

/* =============================================
   TOC SIDEBAR
============================================= */
.pp-toc {
  position: sticky;
  top: 110px;
  align-self: start;
  height: fit-content;
}

.pp-toc-inner {
  background: var(--offwhite);
  border-radius: var(--radius);
  border: 1px solid rgba(30, 57, 143, 0.08);
  padding: 22px;
  overflow: hidden;
}

.pp-toc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(30, 57, 143, 0.1);
}

.pp-toc-header i {
  font-size: 0.75rem;
}

.pp-toc nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.pp-toc-link {
  display: block;
  font-size: 0.78rem;
  color: var(--gray);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all 0.25s;
  line-height: 1.4;
}

.pp-toc-link:hover,
.pp-toc-link.active {
  color: var(--blue);
  background: rgba(30, 57, 143, 0.06);
  border-left-color: var(--blue);
  font-weight: 600;
}

.pp-toc-link.active {
  border-left-color: var(--pink);
  color: var(--pink);
}

.pp-toc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--gradient-main);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.pp-toc-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 0, 126, 0.3);
}

/* =============================================
   MAIN CONTENT
============================================= */
.pp-main {
  min-width: 0;
}

/* Intro card */
.pp-intro-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg,
      rgba(30, 57, 143, 0.05),
      rgba(199, 0, 126, 0.05));
  border: 1px solid rgba(30, 57, 143, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 40px;
}

.pp-intro-card .pp-ic-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-main);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.pp-intro-card h2 {
  font-size: 1.1rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.pp-intro-card p {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 8px;
}

.pp-intro-card p:last-child {
  margin-bottom: 0;
}

/* Section structure */
.pp-section {
  margin-bottom: 52px;
  scroll-margin-top: 100px;
}

.pp-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid;
  border-image: var(--gradient-main) 1;
}

.pp-sh-num {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
}

.pp-section-header h2 {
  font-size: 1.2rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: var(--dark);
}

.pp-section p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Info grid */
.pp-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.pp-info-card {
  background: #fff;
  border: 1px solid rgba(30, 57, 143, 0.1);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
}

.pp-info-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.pp-ic-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(30, 57, 143, 0.08);
}

.pp-ic-head i {
  font-size: 0.8rem;
}

.pp-info-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pp-info-card li {
  font-size: 0.8rem;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.pp-info-card li::before {
  content: "•";
  color: var(--pink);
  font-weight: 700;
  flex-shrink: 0;
}

/* Use list */
.pp-use-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.pp-use-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--offwhite);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue);
  transition: all 0.3s;
}

.pp-use-item:hover {
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.pp-ui-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.pp-use-item strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 3px;
}

.pp-use-item p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}

/* Highlight boxes */
.pp-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  line-height: 1.7;
}

.pp-highlight-box i {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pp-highlight-box--green {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #374151;
}

.pp-highlight-box--green i {
  color: #22c55e;
}

.pp-highlight-box--amber {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #374151;
}

.pp-highlight-box--amber i {
  color: #f59e0b;
}

.pp-highlight-box--blue {
  background: rgba(30, 57, 143, 0.05);
  border: 1px solid rgba(30, 57, 143, 0.12);
  color: #374151;
}

.pp-highlight-box--blue i {
  color: var(--blue);
}

.pp-highlight-box p {
  margin: 0;
}

/* Share items */
.pp-share-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.pp-share-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--offwhite);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.pp-share-item:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.pp-si-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}

.pp-si-tag--blue {
  background: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.pp-si-tag--amber {
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.pp-si-tag--gray {
  background: rgba(107, 114, 128, 0.08);
  color: #4b5563;
  border: 1px solid rgba(107, 114, 128, 0.15);
}

.pp-share-item p {
  font-size: 0.82rem;
  color: #374151;
  line-height: 1.65;
  margin: 0;
}

/* Table */
.pp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.84rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pp-table thead tr {
  background: var(--gradient-main);
}

.pp-table thead th {
  padding: 12px 16px;
  text-align: left;
  color: #fff;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
}

.pp-table tbody tr {
  border-bottom: 1px solid rgba(30, 57, 143, 0.06);
  transition: background 0.2s;
}

.pp-table tbody tr:last-child {
  border-bottom: none;
}

.pp-table tbody tr:hover {
  background: rgba(30, 57, 143, 0.03);
}

.pp-table td {
  padding: 12px 16px;
  color: #374151;
  vertical-align: top;
}

.pp-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  display: inline-block;
}

.pp-tag--blue {
  background: rgba(30, 57, 143, 0.1);
  color: var(--blue);
}

.pp-tag--green {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.pp-tag--purple {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

/* Security grid */
.pp-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.pp-sec-item {
  background: var(--offwhite);
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid rgba(30, 57, 143, 0.07);
  transition: all 0.3s;
}

.pp-sec-item:hover {
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.pp-sec-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 10px;
}

.pp-sec-item strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 5px;
}

.pp-sec-item p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* Retention table */
.pp-retention-table {
  border: 1px solid rgba(30, 57, 143, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 16px;
}

.pp-rt-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  border-bottom: 1px solid rgba(30, 57, 143, 0.06);
  padding: 12px 16px;
  font-size: 0.82rem;
  transition: background 0.2s;
}

.pp-rt-row:last-child {
  border-bottom: none;
}

.pp-rt-row:hover:not(.pp-rt-header) {
  background: rgba(30, 57, 143, 0.03);
}

.pp-rt-header {
  background: linear-gradient(135deg,
      rgba(30, 57, 143, 0.07),
      rgba(199, 0, 126, 0.07));
  font-weight: 700;
  color: var(--dark);
  font-size: 0.78rem;
}

.pp-rt-row span {
  color: #374151;
}

/* Rights grid */
.pp-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.pp-right-card {
  background: #fff;
  border: 1px solid rgba(30, 57, 143, 0.08);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
}

.pp-right-card:hover {
  box-shadow: var(--shadow-pink);
  transform: translateY(-4px);
}

.pp-rc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.pp-right-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 5px;
}

.pp-right-card p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* Bullet list */
.pp-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0;
}

.pp-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.65;
}

.pp-bullet-list li::before {
  content: "→";
  color: var(--pink);
  font-weight: 700;
  flex-shrink: 0;
}

/* Contact grid */
.pp-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.pp-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--offwhite);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(30, 57, 143, 0.08);
  text-decoration: none;
  color: var(--dark);
  transition: all 0.3s;
}

.pp-contact-card:hover {
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(199, 0, 126, 0.15);
}

.pp-cc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.pp-cc-icon--mail {
  background: var(--gradient-main);
}

.pp-cc-icon--phone {
  background: linear-gradient(135deg, #1e398f, #2a4db0);
}

.pp-cc-icon--wa {
  background: #25d366;
}

.pp-cc-icon--map {
  background: linear-gradient(135deg, #c7007e, #9d0062);
}

.pp-contact-card strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 3px;
}

.pp-contact-card span {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
}

.pp-contact-card--addr {
  cursor: default;
}

.pp-contact-card--addr:hover {
  cursor: default;
}

/* Bottom nav */
.pp-bottom-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(30, 57, 143, 0.08);
}

.pp-bn-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  padding: 8px 16px;
  background: rgba(30, 57, 143, 0.06);
  border-radius: 20px;
  border: 1px solid rgba(30, 57, 143, 0.1);
  transition: all 0.3s;
}

.pp-bn-link:hover {
  background: var(--gradient-main);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Floating WA + back-to-top */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  z-index: 900;
  animation: waFloat 3s ease-in-out infinite;
  text-decoration: none;
  transition: transform 0.3s;
}

.float-wa:hover {
  transform: scale(1.15);
}

@keyframes waFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.back-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: var(--shadow);
  border: none;
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-4px);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1200px) {
  .pp-layout {
    gap: 32px;
  }

  .pp-content-wrap {
    padding: 50px 30px 70px;
  }
}

@media (max-width: 1024px) {
  .pp-hero {
    padding: 120px 24px 80px;
    min-height: auto;
  }

  .pp-hero-inner {
    max-width: 100%;
    padding: 30px 0 40px;
  }

  .pp-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pp-toc {
    position: sticky;
    top: 100px;
    order: 1;
    align-self: start;
  }

  .pp-main {
    order: 2;
  }

  .pp-toc-inner {
    padding: 18px;
    border-radius: 18px;
  }

  .pp-toc nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
  }

  .pp-toc-link {
    white-space: nowrap;
    border-left: none;
    border-bottom: 2px solid transparent;
    background: rgba(30, 57, 143, 0.04);
    padding: 8px 12px;
  }

  .pp-toc-link.active,
  .pp-toc-link:hover {
    border-left: none;
    border-bottom-color: var(--pink);
  }

  .pp-intro-card {
    padding: 24px;
  }

  .pp-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pp-hero {
    padding: 130px 20px 65px;
  }

  .pp-hero-inner {
    padding: 20px 0 30px;
  }

  .pp-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    line-height: 1.15;
  }

  .pp-hero p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .pp-meta {
    gap: 10px;
  }

  .pp-meta span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .pp-content-wrap {
    padding: 40px 20px 60px;
  }

  .pp-intro-card {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .pp-section-header {
    gap: 12px;
    align-items: flex-start;
  }

  .pp-section-header h2 {
    font-size: 1.05rem;
    line-height: 1.4;
  }

  .pp-info-grid,
  .pp-security-grid,
  .pp-rights-grid,
  .pp-contact-grid {
    grid-template-columns: 1fr;
  }

  .pp-share-item {
    flex-direction: column;
    gap: 10px;
  }

  .pp-use-item {
    gap: 12px;
    padding: 12px;
  }

  .pp-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .pp-retention-table {
    overflow-x: auto;
  }

  .pp-rt-row {
    min-width: 620px;
    grid-template-columns: 2fr 1.5fr 1.5fr;
  }

  .pp-bottom-nav {
    gap: 10px;
  }

  .float-wa {
    width: 52px;
    height: 52px;
    right: 18px;
    bottom: 18px;
    font-size: 1.35rem;
  }

  .back-top {
    left: 18px;
    bottom: 18px;
  }
}

@media (max-width: 480px) {
  .pp-hero {
    padding: 130px 16px 60px;
  }

  .pp-hero-badge {
    font-size: 0.68rem;
    padding: 6px 12px;
  }

  .pp-hero h1 {
    font-size: 1.6rem;
  }

  .pp-hero p {
    font-size: 0.9rem;
  }

  .pp-content-wrap {
    padding: 34px 16px 54px;
  }

  .pp-toc-inner,
  .pp-intro-card,
  .pp-info-card,
  .pp-sec-item,
  .pp-right-card,
  .pp-contact-card {
    padding: 16px;
  }

  .pp-toc-link {
    width: 100%;
    white-space: normal;
  }

  .pp-highlight-box {
    padding: 14px 16px;
  }

  .pp-bottom-nav {
    flex-direction: column;
  }

  .pp-bn-link {
    width: 100%;
    justify-content: center;
  }
}