.page-privacy-policy {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-privacy-policy__hero-section {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* White text on black background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

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

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-privacy-policy__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text on button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-privacy-policy__hero-button:hover {
  background-color: #e0a33c;
  transform: translateY(-2px);
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.page-privacy-policy__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #000000; /* Main dark color for titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy__section-text {
  font-size: 1em;
  color: #333333;
  margin-bottom: 15px;
}

.page-privacy-policy__section-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-privacy-policy__link {
  color: #FCBC45; /* Accent color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__link:hover {
  text-decoration: underline;
}

.page-privacy-policy__call-to-action-button {
  display: inline-block;
  background-color: #000000; /* Main color for CTA */
  color: #FFFFFF; /* White text on button */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-privacy-policy__call-to-action-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-title {
    font-size: 2.5em;
  }

  .page-privacy-policy__hero-description {
    font-size: 1em;
  }

  .page-privacy-policy__hero-section {
    padding: 60px 15px;
  }

  .page-privacy-policy__content-area {
    padding: 15px;
    margin: 20px auto;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }

  /* Ensure images are responsive and do not overflow */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
  }
}