.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #0A192F; /* Dark text for readability on light background */
  background-color: #f8f8f8;
}

.page-privacy-policy__hero {
  background: linear-gradient(135deg, #0A192F 0%, #333d4a 100%);
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-privacy-policy__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,dark_blue_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-privacy-policy__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700; /* Accent color for main title */
  position: relative;
  z-index: 1;
}

.page-privacy-policy__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.page-privacy-policy__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-privacy-policy__section--alt {
  background-color: #eef2f6; /* Slightly lighter background for alternating sections */
}

.page-privacy-policy__heading {
  font-size: 2em;
  color: #0A192F;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700; /* Gold underline for headings */
  padding-bottom: 10px;
  display: inline-block;
}

.page-privacy-policy__text {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #333;
}

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

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

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

.page-privacy-policy__contact-info {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0A192F;
}

.page-privacy-policy__btn {
  display: inline-block;
  background-color: #FFD700; /* Accent color for button */
  color: #0A192F;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

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

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

  .page-privacy-policy__section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__title {
    font-size: 1.8em;
  }

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

  .page-privacy-policy__heading {
    font-size: 1.5em;
  }

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

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