:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #1a1a2e; /* Body background */
  --card-bg-dark-mode: rgba(255, 255, 255, 0.1);
}

/* Base styles for the privacy policy page */
.page-privacy-policy {
  color: var(--text-light); /* Light text for dark body background */
  background-color: var(--bg-dark); /* Ensure background is consistent */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Space above footer */
}

/* Ensure main content has padding-top to clear fixed header */
.page-privacy-policy__hero-section {
  padding-top: 120px; /* Desktop: Adjust based on actual header height */
  padding-bottom: 40px;
  background-color: var(--secondary-color); /* Dark blue background for hero */
  text-align: center;
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--bg-dark); /* Consistent dark background */
}

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

.page-privacy-policy__main-title {
  font-size: 3em;
  color: var(--primary-color); /* Gold title */
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.page-privacy-policy__hero-description {
  font-size: 1.1em;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: var(--primary-color); /* Gold for section titles */
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: bold;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-privacy-policy__sub-title {
  font-size: 1.5em;
  color: var(--text-light);
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy__paragraph {
  font-size: 1em;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-privacy-policy__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: var(--text-light);
}

.page-privacy-policy__list-item {
  margin-bottom: 8px;
  color: var(--text-light);
}

.page-privacy-policy__list-item strong {
  color: var(--primary-color); /* Gold for strong text in list */
}

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

.page-privacy-policy__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__cta-wrapper {
  text-align: center;
  margin-top: 60px;
  padding: 30px;
  background-color: var(--card-bg-dark-mode); /* Semi-transparent white for CTA background */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__cta-text {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: bold;
}

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

.page-privacy-policy__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-top: 100px !important; /* Mobile: Adjust based on actual header height */
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    max-width: 100% !important;
    width: 100% !important;
  }

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

  .page-privacy-policy__content-area {
    padding: 30px 15px;
    box-sizing: border-box !important;
    max-width: 100% !important;
    width: 100% !important;
  }

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

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

  .page-privacy-policy__section-title {
    font-size: 1.6em;
    margin-top: 40px;
    margin-bottom: 20px;
  }

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

  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 0.95em;
  }

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

  .page-privacy-policy__cta-wrapper {
    padding: 20px;
    margin-top: 40px;
    box-sizing: border-box !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-privacy-policy__cta-text {
    font-size: 1.2em;
    margin-bottom: 20px;
  }

  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    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__list {
    padding-left: 15px;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.4em;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.2em;
  }
  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 0.9em;
  }
  .page-privacy-policy__cta-text {
    font-size: 1em;
  }
  .page-privacy-policy__cta-button {
    font-size: 0.95em;
    padding: 10px 20px;
  }
}