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

.page-privacy-policy__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background-color: #0d0d0d; /* Dark background for hero for contrast with golden elements */
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-privacy-policy__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-privacy-policy__section {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  padding: 30px;
  border-left: 5px solid #FFD700;
}

.page-privacy-policy__section-title {
  color: #8B0000; /* Deep red for section titles */
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  font-size: 1.1em;
}

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

.page-privacy-policy__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-privacy-policy__list-item::before {
  content: '✔'; /* Checkmark icon */
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  max-width: 800px; /* Ensure content images are not too wide */
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__link {
  color: #8B0000;
  text-decoration: underline;
  font-weight: bold;
}

.page-privacy-policy__link:hover {
  color: #FFD700;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button background */
  color: #333333; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #8B0000; /* Deep red text on hover */
}

.page-privacy-policy__call-to-action {
  text-align: center;
  background-color: #8B0000; /* Deep red background for CTA section */
  color: #ffffff;
  padding: 50px;
  border-radius: 10px;
}

.page-privacy-policy__call-to-action .page-privacy-policy__section-title {
  color: #FFD700; /* Gold title on red background */
  border-bottom-color: #f0f0f0;
}

.page-privacy-policy__call-to-action .page-privacy-policy__paragraph {
  color: #f0f0f0;
}

.page-privacy-policy__contact-button {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-privacy-policy__contact-button:hover {
  background-color: #FFD700;
  color: #8B0000;
}

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

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

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

  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 0.95em;
  }

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

  .page-privacy-policy__section {
    padding: 20px;
  }

  .page-privacy-policy__image {
    max-width: 100%; /* Ensure images don't overflow on mobile */
    width: 100%;
    height: auto;
  }
  
  .page-privacy-policy__list-item {
    padding-left: 25px;
  }
  
  .page-privacy-policy__list-item::before {
    left: -5px; /* Adjust position for mobile */
  }
}