.page-privacy-policy {
  color: #333333; /* Dark text on 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;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px; /* Minimum height for hero */
}

.page-privacy-policy__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for the container */
}

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

.page-privacy-policy__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  padding: 20px;
  max-width: 90%;
  background-color: rgba(26, 32, 44, 0.7); /* Semi-transparent dark background for text */
  border-radius: 8px;
}

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__hero-cta-button {
  display: inline-block;
  background-color: #DC143C; /* Dark red for CTA button */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

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

.page-privacy-policy__section-wrapper {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #1A202C; /* Dark gray for section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
}

.page-privacy-policy__sub-section-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

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

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

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

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

.page-privacy-policy__inline-link {
  color: #DC143C; /* Dark red for inline links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__inline-link:hover {
  color: #FFD700; /* Gold on hover */
}

.page-privacy-policy__call-to-action {
  text-align: center;
  background-color: #1A202C; /* Dark gray background for CTA */
  color: #ffffff;
  padding: 50px 20px;
  border-radius: 10px;
  margin-top: 60px;
}

.page-privacy-policy__cta-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 15px;
}

.page-privacy-policy__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #DC143C; /* Dark red for CTA button */
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

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

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

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

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

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

  .page-privacy-policy__sub-section-title {
    font-size: 1.5em;
  }

  .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-wrapper {
    padding: 20px;
  }

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

  .page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure image is not too small */
    min-height: 200px; /* Ensure image is not too small */
  }

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

  /* Mobile content image constraint */
  .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-cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }

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

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

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

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

  .page-privacy-policy__cta-description {
    font-size: 0.9em;
  }

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