.page-privacy-policy {
  color: #333333; /* Default text color for light 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: #003366;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

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

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00;
  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: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__hero-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__hero-button:hover {
  background-color: #e6b800;
  color: #001a33;
}

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

.page-privacy-policy__article {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__article-heading {
  font-size: 2.2em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFCC00;
  padding-bottom: 10px;
}

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

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

.page-privacy-policy__image--left {
  float: left;
  margin-right: 20px;
  width: 400px; /* Example fixed width, adjust as needed */
  height: 267px; /* Maintain aspect ratio */
}

.page-privacy-policy__image--right {
  float: right;
  margin-left: 20px;
  width: 400px; /* Example fixed width, adjust as needed */
  height: 267px; /* Maintain aspect ratio */
}

.page-privacy-policy__image--center {
  margin-left: auto;
  margin-right: auto;
  width: 600px; /* Example fixed width, adjust as needed */
  height: 400px; /* Maintain aspect ratio */
}

.page-privacy-policy__contact-buttons {
  text-align: center;
  margin-top: 40px;
  clear: both;
}

.page-privacy-policy__contact-button {
  display: inline-block;
  background-color: #003366;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
  transition: background-color 0.3s ease;
}

.page-privacy-policy__contact-button:hover {
  background-color: #004080;
}

@media (max-width: 1024px) {
  .page-privacy-policy__hero-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__article-heading {
    font-size: 2em;
  }
  .page-privacy-policy__image--left,
  .page-privacy-policy__image--right {
    width: 300px;
    height: auto;
  }
  .page-privacy-policy__image--center {
    width: 500px;
    height: auto;
  }
}

@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__article-paragraph {
    font-size: 1em;
  }
  .page-privacy-policy__image--left,
  .page-privacy-policy__image--right,
  .page-privacy-policy__image--center {
    float: none;
    margin: 20px auto;
    max-width: 100%;
    width: auto; /* Allow image to scale */
    height: auto;
  }
  .page-privacy-policy__article {
    padding: 20px;
  }
  .page-privacy-policy__contact-button {
    display: block;
    margin: 10px auto;
  }
  .page-privacy-policy {
    overflow-x: hidden;
  }
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-section {
    padding: 60px 15px;
  }
  .page-privacy-policy__hero-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-privacy-policy__content-area {
    padding: 20px 15px;
  }
  .page-privacy-policy__article-heading {
    font-size: 1.5em;
  }
}