.page-privacy-policy {
  color: #ffffff; /* Body background is dark (#121212), so use light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  background: linear-gradient(135deg, #007bff, #ffc107);
  padding: 60px 20px;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Apply header offset if shared doesn't */
}

.page-privacy-policy__hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-privacy-policy__intro-text {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto;
}

.page-privacy-policy__content-section {
  padding: 40px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for content sections */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-privacy-policy__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-privacy-policy__heading {
  font-size: 2.2em;
  color: #ffc107; /* Auxiliary color for main headings */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-privacy-policy__sub-heading {
  font-size: 1.6em;
  color: #007bff; /* Primary color for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  font-size: 1em;
  color: #f0f0f0;
}

.page-privacy-policy__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-privacy-policy__list-item strong {
  color: #ffc107;
}

.page-privacy-policy__content-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-privacy-policy__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-privacy-policy__btn-primary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-privacy-policy__btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-privacy-policy__btn-secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-privacy-policy__btn-secondary:hover {
  background-color: #ffc107;
  color: #121212;
}

.page-privacy-policy a {
  color: #ffc107;
  text-decoration: underline;
}

.page-privacy-policy a:hover {
  color: #fff;
}

/* FAQ Section */
.page-privacy-policy__faq-section {
  padding: 60px 20px;
  background-color: #121212; /* Match body background */
}