.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main color for dark body background */
  background-color: #0A0A0A; /* Body background from shared.css */
}

/* Fixed header spacing - body padding-top is handled by shared.css */
/* First section only needs a small top padding */
.page-privacy-policy__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding for the first section, body handles --header-offset */
  padding-bottom: 60px; /* Adjust as needed */
  background: #0A0A0A; /* Ensure consistent background */
}

.page-privacy-policy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3; /* Subtle background image */
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for better text contrast */
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Use clamp for H1 font size */
  font-weight: 700;
  line-height: 1.2;
  color: #FFD36B; /* Glow color for main title */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
}

.page-privacy-policy__hero-description {
  font-size: 1.1em;
  color: #FFF6D6;
  max-width: 700px;
  margin: 0 auto;
}

.page-privacy-policy__section {
  padding: 60px 0;
  border-bottom: 1px solid #3A2A12; /* Border color */
}

.page-privacy-policy__section:last-of-type {
  border-bottom: none;
}

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

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #F2C14E; /* Main color */
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-privacy-policy__sub-title {
  font-size: 1.6em;
  color: #FFD36B; /* Auxiliary color */
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy p {
  margin-bottom: 1em;
  color: #FFF6D6; /* Text Main color */
}

.page-privacy-policy a {
  color: #FFD36B; /* Links in content */
  text-decoration: underline;
}

.page-privacy-policy a:hover {
  color: #F2C14E; /* Main color on hover */
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main color */
}

.page-privacy-policy__list li {
  margin-bottom: 10px;
  color: #FFF6D6; /* Text Main color */
}

.page-privacy-policy__contact-details p {
  margin-bottom: 10px;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 30px;
  margin-right: 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #ffffff; /* Button text color */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-privacy-policy__cta-button--secondary {
  background: #111111; /* Card BG for secondary button */
  color: #F2C14E; /* Main color for secondary button text */
  border: 2px solid #F2C14E; /* Main color for border */
}

.page-privacy-policy__cta-button--secondary:hover {
  background: #F2C14E;
  color: #111111;
}

/* Images styles */
.page-privacy-policy img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Ensure content area images are not smaller than 200px */
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* No CSS filter for images as per requirement (brightness is a luminance adjustment) */

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile: controlled by shared's media */
    padding-bottom: 40px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

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

  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__sub-title {
    font-size: 1.4em;
  }

  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: unset; /* Remove min-width for mobile for flexibility */
    min-height: unset; /* Remove min-height for mobile for flexibility */
  }
}