.page-privacy-policy {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  background-color: #f5f5f5; /* Light background for contrast with dark text */
  color: #333333; /* Dark text for readability */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  background: linear-gradient(135deg, #FFD700, #1E90FF);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

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

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

.page-privacy-policy__hero-button,
.page-privacy-policy__contact-button {
  display: inline-block;
  background-color: #FFD700; /* Gold primary color */
  color: #1E90FF; /* Deep blue text for contrast */
  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;
  border: 2px solid #FFD700;
}

.page-privacy-policy__hero-button:hover,
.page-privacy-policy__contact-button:hover {
  background-color: #1E90FF; /* Deep blue on hover */
  color: #FFD700; /* Gold text on hover */
  transform: translateY(-3px);
  border-color: #1E90FF;
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.page-privacy-policy__section {
  margin-bottom: 30px;
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #1E90FF; /* Deep blue for headings */
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  font-size: 1em;
}

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

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

.page-privacy-policy__list-item strong {
  color: #1E90FF;
}

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* 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.5em;
  }

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

  .page-privacy-policy__content-area {
    padding: 20px 15px;
    margin-top: -20px;
  }
}

@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__section-title {
    font-size: 1.3em;
  }

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

  .page-privacy-policy__hero-button,
  .page-privacy-policy__contact-button {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
  }
}