.page-privacy-policy {
  color: #000000; /* Dark text for light background */
  background-color: #FFFFFF; /* Ensures a white background for the main content area */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px; /* Minimum height for hero section */
}

.page-privacy-policy__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for the container */
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-privacy-policy__hero-content {
  position: absolute;
  text-align: center;
  color: #FFFFFF;
  padding: 20px;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for text readability */
  border-radius: 8px;
}

.page-privacy-policy__main-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  color: #FCBC45; /* Accent color for main title */
}

.page-privacy-policy__intro-text {
  font-size: 1.2em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-privacy-policy__content-area {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.8;
}

.page-privacy-policy__section {
  margin-bottom: 40px;
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-privacy-policy__section-paragraph {
  font-size: 1em;
  margin-bottom: 15px;
}

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

.page-privacy-policy__list-item {
  margin-bottom: 8px;
  font-size: 1em;
}

.page-privacy-policy__section-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

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

.page-privacy-policy__link:hover {
  color: #000000;
  text-decoration: none;
}

.page-privacy-policy__call-to-action {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #000000;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-text {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000; /* Dark text for the accent colored button */
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  background-color: #e0a53b; /* Slightly darker accent on hover */
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__main-title {
    font-size: 2em;
  }

  .page-privacy-policy__intro-text {
    font-size: 1em;
  }

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

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

  .page-privacy-policy__hero-content {
    max-width: 90%;
  }

  .page-privacy-policy__cta-text {
    font-size: 1.2em;
  }

  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  /* Mobile content image constraints */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 1.8em;
  }

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

  .page-privacy-policy__hero-section {
    min-height: 300px;
  }
}