.page-privacy-policy {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  color: #ffffff; /* Light text for dark body background */
  background-color: #333; /* Matches body background for consistency */
}

.page-privacy-policy__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  background-color: #1A1A1A; /* Auxiliary dark background for hero */
  overflow: hidden;
}

.page-privacy-policy__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold primary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-privacy-policy__hero-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Primary gold color for CTA */
  color: #1A1A1A; /* Dark text on gold button */
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-privacy-policy__hero-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.8;
}

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

.page-privacy-policy__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.page-privacy-policy__sub-section-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 35px;
  margin-bottom: 18px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-privacy-policy__paragraph {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

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

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

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

.page-privacy-policy__link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  max-width: 600px; /* Ensure images are not too wide */
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.page-privacy-policy__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

.page-privacy-policy__image--center {
  clear: both;
  display: block;
  margin: 30px auto;
}

.page-privacy-policy__contact-list {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.page-privacy-policy__contact-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #f0f0f0;
}

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

.page-privacy-policy__cta-banner {
    clear: both;
    background-color: #0d0d0d;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__cta-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-privacy-policy__cta-description {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A1A;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(255, 215, 0, 0.6);
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
  .page-privacy-policy__hero-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 2em;
  }
  .page-privacy-policy__sub-section-title {
    font-size: 1.6em;
  }
  .page-privacy-policy__image--left,
  .page-privacy-policy__image--right {
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    padding-top: var(--header-offset, 120px);
  }
  .page-privacy-policy__hero-section {
    padding: 60px 15px;
  }
  .page-privacy-policy__hero-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-privacy-policy__hero-cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-privacy-policy__content-area {
    padding: 30px 15px;
  }
  .page-privacy-policy__article {
    padding: 25px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-privacy-policy__sub-section-title {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 15px;
  }
  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 0.95em;
  }
  .page-privacy-policy__image {
    max-width: 100%; /* Ensure images do not overflow on mobile */
    height: auto;
    margin: 20px auto;
  }
  .page-privacy-policy__cta-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__cta-description {
    font-size: 1em;
  }
  .page-privacy-policy__cta-button {
    padding: 14px 28px;
    font-size: 1.05em;
  }

  /* IMPORTANT: Mobile content area images must be constrained */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
  }
}