/* style/privacy-policy.css */
:root {
  --primary-color: #FFD700;
  --secondary-color: #000080;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000;
  --background-light-alt: #f0f0f0;
  --border-color: #e0e0e0;
}

.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text should be light */
  background-color: var(--background-dark);
}

.page-privacy-policy__introduction-section {
  padding: 80px 20px 40px;
  padding-top: 120px; /* Adjust for fixed header on desktop */
  text-align: center;
  background-color: var(--secondary-color);
  color: var(--text-light);
}

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

.page-privacy-policy__main-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-privacy-policy__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-privacy-policy__image--hero {
  width: 100%;
  max-width: 1000px;
}

.page-privacy-policy__section {
  padding: 60px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-privacy-policy__section--alt-bg {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-privacy-policy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-privacy-policy__sub-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  font-size: 1em;
}

.page-privacy-policy ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

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

.page-privacy-policy__link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: #fff;
  text-decoration: underline;
}

.page-privacy-policy__contact-section {
  padding: 60px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
}

.page-privacy-policy__contact-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 400px;
}

.page-privacy-policy__contact-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-privacy-policy__contact-note {
  font-style: italic;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-privacy-policy__introduction-section {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-privacy-policy__main-title {
    font-size: 2em;
  }

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

  .page-privacy-policy__section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  
  .page-privacy-policy__section-title::after {
    width: 60px;
  }

  .page-privacy-policy__sub-title {
    font-size: 1.3em;
    margin-top: 30px;
  }

  .page-privacy-policy p,
  .page-privacy-policy ul li {
    font-size: 0.95em;
  }

  .page-privacy-policy ul {
    margin-left: 20px;
  }

  .page-privacy-policy__image {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-privacy-policy__contact-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-privacy-policy__contact-list li {
    font-size: 1em;
  }
}