:root {
  --primary-color: #003366;
  --secondary-color: #FFCC00;
  --text-light: #ffffff;
  --text-dark: #333333;
  --dark-bg-1: #0d0d0d; /* Assuming a dark body background from shared.css */
}

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Light text for dark background */
  background-color: var(--dark-bg-1); /* Ensure consistency with body background */
  padding-top: 120px; /* Desktop: Space for fixed header */
}

.page-privacy-policy__hero-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #001a33 100%);
  border-bottom: 2px solid var(--secondary-color);
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-privacy-policy__main-title {
  font-size: 3.2em;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-privacy-policy__description a {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__description a:hover {
  color: #fff;
}

.page-privacy-policy__cta-wrapper {
  margin-top: 40px;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  background: #ffdb4d; /* Lighter gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.page-privacy-policy__article {
  background: #1a1a1a; /* Slightly lighter dark background for content */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__article-heading {
  font-size: 2em;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(255, 204, 0, 0.3);
  padding-bottom: 10px;
}

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

.page-privacy-policy__article-subheading {
  font-size: 1.5em;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.page-privacy-policy p a {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-privacy-policy p a:hover {
  color: #fff;
}

.page-privacy-policy__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-privacy-policy__list li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.page-privacy-policy__list li strong {
  color: var(--secondary-color);
}

.page-privacy-policy__list li a {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-privacy-policy__list li a:hover {
  color: #fff;
}

.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.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: 2.8em;
  }

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

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

  .page-privacy-policy__article-subheading {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    padding-top: 100px; /* Mobile: Space for fixed header */
    font-size: 15px;
  }

  .page-privacy-policy__hero-section {
    padding: 40px 15px;
  }

  .page-privacy-policy__container {
    padding: 0 15px;
  }

  .page-privacy-policy__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-privacy-policy__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-privacy-policy__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-privacy-policy__cta-wrapper {
    margin-top: 25px;
  }

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

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

  .page-privacy-policy__article-heading {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__article-subheading {
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

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

  /* Mobile image responsive */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-privacy-policy__article,
  .page-privacy-policy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

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

  .page-privacy-policy__article-heading {
    font-size: 1.3em;
  }

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