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

.page-privacy-policy__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%); /* Dark blue gradient */
  padding: 80px 20px;
  text-align: center;
  color: #FFD700; /* Gold for main titles */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-privacy-policy__subtitle {
  font-size: 1.3em;
  color: #CCCCCC; /* Lighter gray for subtitle */
}

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

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

.page-privacy-policy__article {
  background-color: #1A2B4C; /* Slightly lighter dark blue 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: 2.2em;
  color: #FFD700; /* Gold for section headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #3A4F7A; /* Subtle separator */
  padding-bottom: 10px;
}

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

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

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

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

.page-privacy-policy__article ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-privacy-policy__cta-box {
  background-color: #0A1931; /* Main dark blue for CTA box */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
  border: 2px solid #FFD700; /* Gold border */
}

.page-privacy-policy__cta-title {
  font-size: 2em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 15px;
}

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

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-privacy-policy__contact-info {
  background-color: #0A1931; /* Main dark blue */
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #3A4F7A;
}

.page-privacy-policy__contact-info .page-privacy-policy__heading {
  color: #FFD700;
  font-size: 2em;
  border-bottom: none;
  padding-bottom: 0;
  margin-top: 0;
}

.page-privacy-policy__contact-info p {
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-privacy-policy__contact-link {
  color: #FFD700; /* Gold link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
  color: #E6C200; /* Slightly darker gold on hover */
  text-decoration: underline;
}

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

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

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

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

  .page-privacy-policy__cta-title {
    font-size: 1.6em;
  }

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

  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

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

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

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

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

  .page-privacy-policy__cta-title {
    font-size: 1.4em;
  }

  .page-privacy-policy__cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }
}