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

.page-privacy-policy__hero-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-privacy-policy__main-title {
  font-size: 2.8em;
  color: #FF6B00; /* Main brand color */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-privacy-policy__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #555555;
}

.page-privacy-policy__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__content-area {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: -60px; /* Overlap with hero section for visual flow */
  position: relative;
  z-index: 2;
}

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

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

.page-privacy-policy__section-title {
  font-size: 1.8em;
  color: #00A86B; /* Auxiliary brand color */
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

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

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

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

.page-privacy-policy__link:hover {
  text-decoration: underline;
  color: #e65c00; /* Slightly darker on hover */
}

.page-privacy-policy__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  cursor: pointer;
  margin-top: 20px;
}

.page-privacy-policy__button--primary {
  background-color: #00A86B; /* Auxiliary brand color */
  color: #ffffff;
}

.page-privacy-policy__button--primary:hover {
  background-color: #008f5a; /* Darker green on hover */
}

.page-privacy-policy__button--cta {
  background-color: #FF6B00; /* Main brand color */
  color: #ffffff;
  font-size: 1.1em;
  padding: 15px 30px;
}

.page-privacy-policy__button--cta:hover {
  background-color: #e65c00; /* Darker orange on hover */
}

.page-privacy-policy__cta-section {
  text-align: center;
  background-color: #f9f9f9;
  padding: 50px 20px;
  border-radius: 8px;
  margin-top: 40px;
  border: 1px solid #eee;
}

.page-privacy-policy__cta-title {
  font-size: 2.2em;
  color: #FF6B00;
  margin-bottom: 15px;
}

.page-privacy-policy__cta-text {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

/* 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.5em;
  }

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

  .page-privacy-policy__content-area {
    padding: 20px;
    margin-top: -30px; /* Adjust overlap for mobile */
  }

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

  .page-privacy-policy__hero-image,
  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content images are not too small on mobile */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
  }
}

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

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

  .page-privacy-policy__button {
    width: 100%;
    box-sizing: border-box;
  }
}