.page-privacy-policy {
  color: #333333; /* Deep gray for text on light background */
}

.page-privacy-policy__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #003366; /* Main brand color for hero background */
  color: #ffffff;
  text-align: center;
  padding-bottom: 40px;
}

.page-privacy-policy__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

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

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-privacy-policy__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.page-privacy-policy__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for button */
  color: #003366; /* Main color for button text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-privacy-policy__hero-button:hover {
  background-color: #e6c200; /* Slightly darker accent on hover */
  transform: translateY(-2px);
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.7;
  font-size: 1.05em;
}

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

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #003366; /* Main brand color for section titles */
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
}

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

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

.page-privacy-policy__image-content {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block; /* Ensure image takes full width and doesn't float */
}

.page-privacy-policy__link,
.page-privacy-policy__contact-link {
  color: #003366; /* Main brand color for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover,
.page-privacy-policy__contact-link:hover {
  color: #FFD700; /* Accent color on hover */
}

.page-privacy-policy__call-to-action {
  text-align: center;
  padding: 50px 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-top: 40px;
}

.page-privacy-policy__call-to-action .page-privacy-policy__paragraph {
  font-size: 1.3em;
  font-weight: bold;
  color: #003366;
  margin-bottom: 25px;
}

.page-privacy-policy__button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 18px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-privacy-policy__button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@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__content-area {
    padding: 20px 15px;
    font-size: 1em;
  }

  .page-privacy-policy__hero-section {
    padding-top: var(--header-offset, 200px); /* Adjust for mobile header offset */
    padding: 30px 15px;
  }

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