.page-privacy-policy {
  color: #333333; /* Dark text for light body background #f4f4f4 */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-privacy-policy__hero-section {
  background-color: #1A2E40; /* Deep blue main color */
  color: #ffffff;
  padding: 80px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent */
  font-weight: bold;
}

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

.page-privacy-policy__hero-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #1A2E40;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

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

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

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

.page-privacy-policy__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-privacy-policy__link {
  color: #1A2E40;
  text-decoration: underline;
  font-weight: bold;
}

.page-privacy-policy__link:hover {
  color: #FFD700;
}

.page-privacy-policy__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
  cursor: pointer;
}

.page-privacy-policy__button--primary {
  background-color: #FFD700;
  color: #1A2E40;
  border: 2px solid #FFD700;
}

.page-privacy-policy__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-privacy-policy__button--contact {
  background-color: #1A2E40;
  color: #ffffff;
  border: 2px solid #1A2E40;
}

.page-privacy-policy__button--contact:hover {
  background-color: #0d1e2e;
  border-color: #0d1e2e;
}

.page-privacy-policy__cta {
  text-align: center;
  padding: 50px 20px;
  background-color: #1A2E40;
  color: #ffffff;
  border-radius: 10px;
  margin-top: 50px;
}

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

.page-privacy-policy__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

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

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

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

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

  .page-privacy-policy__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  /* Mobile content area images must not overflow */
  .page-privacy-policy__content-area img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-section,
  .page-privacy-policy__content-area,
  .page-privacy-policy__cta {
    padding-left: 15px;
    padding-right: 15px;
  }

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

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