.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-privacy-policy__hero {
  background: linear-gradient(135deg, #0A2463 0%, #3058A1 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  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_pattern,geometric,subtle_texture]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-privacy-policy__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.page-privacy-policy__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E0B14A; /* Gold for emphasis */
  font-weight: bold;
}

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

.page-privacy-policy__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__btn--primary {
  background-color: #E0B14A; /* Gold */
  color: #0A2463; /* Dark blue text */
  box-shadow: 0 4px 15px rgba(224, 177, 74, 0.4);
}

.page-privacy-policy__btn--primary:hover {
  background-color: #c99c3e; /* Darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 177, 74, 0.6);
}

.page-privacy-policy__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-privacy-policy__heading {
  font-size: 2em;
  color: #0A2463; /* Dark blue */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #E0B14A;
  padding-bottom: 10px;
}

.page-privacy-policy__text {
  margin-bottom: 15px;
  color: #444;
}

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

.page-privacy-policy__numbered-list {
  list-style-type: decimal;
}

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

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

.page-privacy-policy__cta-block {
  background-color: #0A2463;
  color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-text {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-privacy-policy__btn--secondary {
  background-color: #E0B14A; /* Gold */
  color: #0A2463; /* Dark blue text */
  box-shadow: 0 4px 15px rgba(224, 177, 74, 0.4);
}

.page-privacy-policy__btn--secondary:hover {
  background-color: #c99c3e; /* Darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 177, 74, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__title {
    font-size: 2em;
  }
  .page-privacy-policy__subtitle {
    font-size: 1em;
  }
  .page-privacy-policy__heading {
    font-size: 1.6em;
  }
  .page-privacy-policy__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero {
    padding: 60px 15px;
  }
  .page-privacy-policy__title {
    font-size: 1.8em;
  }
  .page-privacy-policy__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-privacy-policy__content-section {
    padding: 30px 0;
  }
  .page-privacy-policy__cta-block {
    padding: 30px 20px;
  }
}