/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #0A2239; /* Primary dark background */
}

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

.page-privacy-policy__hero {
  background: linear-gradient(135deg, #0A2239, #1a3e5d);
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  border-bottom: 2px solid #FFD700;
}

.page-privacy-policy__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-privacy-policy__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark text on gold */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-privacy-policy__btn--secondary {
  background-color: #1a3e5d; /* Darker blue for secondary button */
  color: #FFD700; /* Gold text on dark blue */
  border: 1px solid #FFD700;
}

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

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

.page-privacy-policy__heading {
  font-size: 2.2em;
  color: #FFD700; /* Gold for headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

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

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-privacy-policy__list-item strong {
  color: #FFD700; /* Gold for strong text in list items */
}

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

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  border: 2px solid #FFD700;
}

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

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

  .page-privacy-policy__subtitle,
  .page-privacy-policy__text,
  .page-privacy-policy__list-item {
    font-size: 1em;
  }

  .page-privacy-policy__hero {
    padding: 60px 0;
  }
}

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

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

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

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