/* ==================== PRIVACY POLICY PAGE ==================== */

:root {
  --pp-primary: #e07c37;
  --pp-primary-dark: #cc6929;
  --pp-bg: #f6f7f9;
  --pp-card-bg: #ffffff;
  --pp-border: #e5e7eb;
  --pp-text: #111827;
  --pp-muted: #6b7280;
  --pp-accent: #fff3e9;
}

.privacy-policy-page {
  background: var(--pp-bg);
  min-height: 100vh;
}

.privacy-header {
  border-bottom: 2px solid var(--pp-border);
  padding-bottom: 1rem;
}

.privacy-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--pp-text);
}

.privacy-subtitle {
  color: var(--pp-muted);
  font-size: 0.95rem;
}

.privacy-card {
  background: var(--pp-card-bg);
  border-radius: 16px;
}

.privacy-section {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--pp-border);
}

.privacy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.section-title {
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--pp-text);
  margin-bottom: 0.8rem;
}

.sub-heading {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--pp-text);
  margin-top: 1rem;
  margin-bottom: 0.6rem;
}

.sub-title {
  font-weight: 600;
  color: var(--pp-text);
  margin-bottom: 0.4rem;
}

.privacy-section p {
  color: var(--pp-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.policy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0.95rem;
}

.policy-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.45rem;
  color: var(--pp-muted);
  line-height: 1.6;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pp-primary);
}

.policy-list-alt {
  background: var(--pp-accent);
  border: 1px solid #f5dcc9;
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
}

.contact-box {
  border: 1px solid var(--pp-border);
  border-radius: 10px;
  background: #fafafa;
  padding: 1rem;
}

.contact-box a {
  color: var(--pp-primary);
  text-decoration: none;
}

.contact-box a:hover {
  color: var(--pp-primary-dark);
  text-decoration: underline;
}

.placeholder {
  color: var(--pp-muted);
  font-style: italic;
  background: #f3f4f6;
  padding: 0.15rem 0.45rem;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .privacy-title {
    font-size: 1.55rem;
  }

  .section-title {
    font-size: 1.1rem;
  }
}
