.page-privacy-policy {
  color: #333333; /* Dark text for light body background #f8f8f8 */
}

.page-privacy-policy__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Blend of brand colors */
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-privacy-policy__hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-privacy-policy__hero-button {
  display: inline-block;
  background-color: #8B0000; /* Auxiliary color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-privacy-policy__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background */
  display: block;
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}

.page-privacy-policy__section:last-of-type {
  border-bottom: none;
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #8B0000; /* Auxiliary color for section titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy__section-paragraph {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444444;
}

.page-privacy-policy__list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
}

.page-privacy-policy__list-item {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #444444;
}

.page-privacy-policy__list-item::before {
  content: '•';
  color: #FFD700; /* Primary color for list bullets */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

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

.page-privacy-policy__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto; /* Center images */
}

.page-privacy-policy__link {
  color: #FFD700; /* Primary color for links */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: #b39700; /* Darker shade on hover */
  text-decoration: underline;
}

.page-privacy-policy__contact-button {
  display: inline-block;
  background-color: #FFD700; /* Primary color */
  color: #333333;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 15px;
}

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

.page-privacy-policy__cta-section {
  background: linear-gradient(90deg, #8B0000, #FFD700); /* Reversed gradient for CTA */
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-privacy-policy__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-description {
  font-size: 1.15em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Primary color */
  color: #333333;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-privacy-policy__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-privacy-policy__cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background */
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-bottom: 40px;
  }
  .page-privacy-policy__hero-content {
    padding: 30px 15px;
  }
  .page-privacy-policy__hero-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__hero-description,
  .page-privacy-policy__section-paragraph,
  .page-privacy-policy__list-item,
  .page-privacy-policy__cta-description {
    font-size: 1em;
  }
  .page-privacy-policy__hero-button,
  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-privacy-policy__content-area {
    margin: 20px auto;
    padding: 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.6em;
  }
  .page-privacy-policy__list {
    margin-left: 15px;
  }
  .page-privacy-policy__cta-section {
    padding: 40px 15px;
  }
  .page-privacy-policy__cta-title {
    font-size: 2em;
  }
  /* Mobile content area images must not overflow */
  .page-privacy-policy__image-wrapper img,
  .page-privacy-policy__hero-image img,
  .page-privacy-policy__cta-image img {
    max-width: 100%;
    height: auto;
  }
}

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