.page-privacy-policy {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-privacy-policy__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  text-align: center;
  background-color: #007bff; /* Fallback background */
  color: #ffffff;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability, not changing color */
  z-index: 0;
}

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

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

.page-privacy-policy__intro-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #ffffff;
}

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

.page-privacy-policy__article {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 30px;
  border-left: 5px solid #007bff;
}

.page-privacy-policy__article-heading {
  color: #007bff;
  font-size: 1.8em;
  margin-bottom: 15px;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 10px;
}

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

.page-privacy-policy__keyword {
  font-weight: bold;
  color: #007bff;
}

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

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

.page-privacy-policy__article-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  display: block;
  box-shadow: 0 4px 8px 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__cta-section {
  background-color: #007bff;
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #007bff;
  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;
  margin: 0 10px;
  border: 2px solid #ffc107;
}

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

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

.page-privacy-policy__cta-button--secondary:hover {
  background-color: #ffc107;
  color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 60px 15px;
  }

  .page-privacy-policy__main-title {
    font-size: 2em;
  }

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

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

  .page-privacy-policy__article {
    padding: 20px;
  }

  .page-privacy-policy__article-heading {
    font-size: 1.5em;
  }

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

  .page-privacy-policy__cta-button {
    width: 90%;
    margin-bottom: 15px;
  }

  .page-privacy-policy__article-image {
    max-width: 100%;
    height: auto;
  }
}

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

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