.page-privacy-policy {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-privacy-policy__hero-container {
  position: relative;
  width: 100%;
  max-height: 600px; /* Limit hero height */
  overflow: hidden;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-privacy-policy__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #ffffff;
}

.page-privacy-policy__hero-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  max-width: 900px;
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  color: #f0f0f0;
}

.page-privacy-policy__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

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

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #1A1A1A; /* Dark background for content sections */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.page-privacy-policy__sub-section-title {
  font-size: 2em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-privacy-policy__sub-section-heading {
  font-size: 1.5em;
  color: #f0f0f0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__sub-heading-level-5 {
  font-size: 1.2em;
  color: #cccccc;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-privacy-policy__list-item {
  margin-bottom: 8px;
}

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

.page-privacy-policy__content-area a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__content-area a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-privacy-policy__image-inline {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-privacy-policy__cta-section {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-privacy-policy__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

.page-privacy-policy__cta-button--secondary {
  background-color: #333;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-privacy-policy__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

@media (max-width: 1024px) {
  .page-privacy-policy__hero-title {
    font-size: 2.5em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1.1em;
  }
  .page-privacy-policy__section-title {
    font-size: 2em;
  }
  .page-privacy-policy__sub-section-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__image-inline {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-title {
    font-size: 2em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1em;
  }
  .page-privacy-policy__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-privacy-policy__content-area {
    margin: 20px auto;
    padding: 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-privacy-policy__sub-section-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__sub-section-heading {
    font-size: 1.3em;
  }
  .page-privacy-policy__list {
    margin-left: 20px;
  }
  .page-privacy-policy__cta-section {
    flex-direction: column;
    gap: 15px;
  }
  .page-privacy-policy__cta-button {
    width: 90%;
    margin: 10px auto;
    font-size: 1.1em;
  }
  .page-privacy-policy__hero-image img,
  .page-privacy-policy__image-inline {
    max-width: 100%;
    height: auto;
  }
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__hero-description {
    font-size: 0.9em;
  }
  .page-privacy-policy__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__sub-section-title {
    font-size: 1.3em;
  }
  .page-privacy-policy__sub-section-heading {
    font-size: 1.1em;
  }
  .page-privacy-policy__list {
    margin-left: 15px;
  }
  .page-privacy-policy__cta-button {
    font-size: 1em;
  }
}