.page-privacy-policy {
  color: #ffffff; /* Body background is dark, so text should be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.8;
  background-color: #000000; /* Ensure consistency with shared body background */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background-color: #0d0d0d; /* Slightly lighter dark for hero section */
}

.page-privacy-policy__hero-container {
  max-width: 1000px;
  width: 100%;
  z-index: 1;
  position: relative;
}

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Primary color for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-privacy-policy__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #000000; /* Consistent dark background for content */
}

.page-privacy-policy__section-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Primary color for section titles */
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: bold;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
  line-height: 1.7;
}

.page-privacy-policy__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-privacy-policy__list-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #f0f0f0;
}

.page-privacy-policy__list-item::before {
  content: '•';
  color: #FFD700; /* Primary color for list bullets */
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-privacy-policy__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 800px; /* Constrain content images */
}

.page-privacy-policy__link {
  color: #FFD700; /* Primary color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-privacy-policy__contact-cta {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-privacy-policy__btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Primary color for button background */
  color: #000000; /* Dark text for contrast on yellow */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-privacy-policy__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1.2em;
  }
  .page-privacy-policy__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-privacy-policy__main-title {
    font-size: 2.2em;
    line-height: 1.3;
  }
  .page-privacy-policy__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-privacy-policy__content-area {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .page-privacy-policy__section-container {
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 1em;
    line-height: 1.6;
  }
  .page-privacy-policy__list-item {
    padding-left: 25px;
  }
  .page-privacy-policy__content-image {
    margin: 30px auto;
    border-radius: 4px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-privacy-policy__btn-primary {
    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__contact-cta {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}