/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Dark body background #121212, so text is light */
  background-color: #121212; /* Ensure consistency with shared.css body background */
}

.page-privacy-policy__hero-banner {
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Brand colors for hero */
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-privacy-policy__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-privacy-policy__main-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-privacy-policy__intro-text {
  font-size: 1.2em;
  opacity: 0.9;
}

.page-privacy-policy__content-section {
  padding: 40px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #f0f0f0;
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}