.page-privacy-policy {
  color: #333333; /* Dark text for default light body background */
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  background-color: #f8f9fa;
  overflow: hidden;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-privacy-policy__hero-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  text-align: center;
  z-index: 1;
  padding: 20px;
}

.page-privacy-policy__main-title {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-privacy-policy__intro-text {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #007bff; /* Primary brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  background-color: #0056b3;
}

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

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

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #007bff; /* Primary brand color */
  margin-bottom: 15px;
  border-bottom: 2px solid #dc3545; /* Secondary brand color */
  padding-bottom: 10px;
}

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

.page-privacy-policy__keyword {
  font-weight: bold;
  color: #dc3545; /* Secondary brand color for emphasis */
}

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

.page-privacy-policy__link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-privacy-policy__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

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

.page-privacy-policy__cta-button--bottom {
  margin-top: 30px;
  display: block;
  text-align: center;
}

/* 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__hero-image,
  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
  }

  .page-privacy-policy__hero-container {
    width: 95%;
  }

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

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

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

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

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

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