.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for body text on dark background */
  background-color: #0F1D33; /* Darker background for readability */
}

.page-privacy-policy__hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #0F1D33 100%);
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

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

.page-privacy-policy__subtitle {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-privacy-policy__button {
  display: inline-block;
  background-color: #FFD700; /* Gold for primary button */
  color: #1A2B4C; /* Dark blue text on gold */
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-privacy-policy__button:hover {
  background-color: #E0B500; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-privacy-policy__content {
  padding: 50px 0;
}

.page-privacy-policy__article {
  background-color: #1A2B4C; /* Main brand color for article background */
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__heading {
  font-size: 2em;
  color: #FFD700; /* Gold for section headings */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-privacy-policy__heading:first-of-type {
  margin-top: 0;
}

.page-privacy-policy__article p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-privacy-policy__article strong {
  color: #FFD700;
}

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

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

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

.page-privacy-policy__cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-privacy-policy__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-privacy-policy__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-2px);
}

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

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

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

  .page-privacy-policy__article {
    padding: 25px;
  }

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

  .page-privacy-policy__button--secondary {
    margin-left: 10px;
    margin-top: 15px;
  }
  .page-privacy-policy__cta .page-privacy-policy__button {
      display: block;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 15px;
  }
  .page-privacy-policy__cta .page-privacy-policy__button--secondary {
      margin-left: auto;
      margin-right: auto;
  }
}

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

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

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

  .page-privacy-policy__cta p {
    font-size: 1.1em;
  }
  .page-privacy-policy__cta .page-privacy-policy__button {
      width: 90%;
  }
}