.page-privacy-policy {
  color: #ffffff; /* Dark body background #1a1a1a requires light text */
  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 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #0A2463; /* Main brand color for hero background */
  overflow: hidden;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  color: #E3B505; /* Auxiliary brand color for emphasis */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-privacy-policy__hero-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  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 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-privacy-policy__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background */
  filter: grayscale(50%); /* Allowed for subtle background effect, not changing original color */
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #1a1a1a; /* Matching body background */
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__article {
  color: #f0f0f0;
}

.page-privacy-policy__article-heading {
  font-size: 2.5em;
  color: #E3B505;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #0A2463;
  padding-bottom: 10px;
}

.page-privacy-policy__sub-heading {
  font-size: 2em;
  color: #E3B505;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__sub-sub-heading {
  font-size: 1.5em;
  color: #f0f0f0;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-privacy-policy__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-privacy-policy__link {
  color: #E3B505;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-privacy-policy__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-privacy-policy__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-privacy-policy__call-to-action {
  background-color: #0A2463;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__call-to-action-text {
  font-size: 1.5em;
  color: #f0f0f0;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-privacy-policy__call-to-action-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  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 5px 15px rgba(0, 0, 0, 0.3);
  margin: 0 10px;
}

.page-privacy-policy__call-to-action-button:hover {
  background-color: #f5cb42;
  transform: translateY(-3px);
}

.page-privacy-policy__call-to-action-button--secondary {
  background-color: transparent;
  border: 2px solid #E3B505;
  color: #E3B505;
}

.page-privacy-policy__call-to-action-button--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
}

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

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

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

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

  .page-privacy-policy__sub-sub-heading {
    font-size: 1.2em;
  }

  .page-privacy-policy__article-paragraph {
    font-size: 0.95em;
  }

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

  .page-privacy-policy__call-to-action-button {
    margin: 10px 0;
    width: 90%;
  }

  .page-privacy-policy__call-to-action-text {
    font-size: 1.2em;
  }

  /* Ensure images are responsive and do not overflow */
  .page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
  }
}

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

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

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

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

  .page-privacy-policy__sub-sub-heading {
    font-size: 1.1em;
  }

  .page-privacy-policy__call-to-action-button {
    font-size: 1em;
    padding: 12px 20px;
  }
}