.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light background */
  background-color: #f5f5f5;
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 60px; /* Adjusted padding for hero section */
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #000000; /* Auxiliary color for a sleek look */
  color: #ffffff;
  text-align: center;
  background-image: url('[GALLERY:hero_privacy:1920x1080:bj38,privacy_policy,data_security,golden_elements]');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-privacy-policy__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  z-index: 1;
}

.page-privacy-policy__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
}

.page-privacy-policy__main-title {
  font-size: 42px;
  font-weight: bold;
  color: #FFD700; /* Primary color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #FFD700; /* Primary color for main CTA */
  color: #000000; /* Dark text for primary CTA */
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-privacy-policy__cta-button--secondary {
  background: #000000; /* Auxiliary color for secondary CTA */
  color: #FFD700; /* Primary color for secondary CTA text */
  border: 1px solid #FFD700;
}

.page-privacy-policy__cta-button--secondary:hover {
  background: #1a1a1a;
  border-color: #e6c200;
}

.page-privacy-policy__content-area {
  background-color: #ffffff; /* White background for content */
  padding: 60px 20px;
  color: #333333;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
  max-width: 1200px;
}

.page-privacy-policy__section-title {
  font-size: 32px;
  color: #000000; /* Dark text for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
}

.page-privacy-policy__sub-title {
  font-size: 24px;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
}

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

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

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

.page-privacy-policy__contact-link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
  color: #e6c200;
}

.page-privacy-policy__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.page-privacy-policy__image-caption {
  font-size: 14px;
  color: #666666;
  margin-top: 10px;
}

.page-privacy-policy__back-to-home {
  margin-top: 50px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: 38px;
  }
  .page-privacy-policy__section-title {
    font-size: 28px;
  }
  .page-privacy-policy__sub-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 60px 15px 40px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-privacy-policy__main-title {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .page-privacy-policy__description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .page-privacy-policy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-privacy-policy__cta-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
  }

  .page-privacy-policy__content-area {
    padding: 40px 15px;
    margin: 20px auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-privacy-policy__section-title {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__sub-title {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 15px;
  }

  .page-privacy-policy__list {
    margin-left: 20px;
  }
  
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-privacy-policy__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 26px;
  }
  .page-privacy-policy__section-title {
    font-size: 22px;
  }
  .page-privacy-policy__sub-title {
    font-size: 18px;
  }
  .page-privacy-policy__cta-button {
    font-size: 14px;
    padding: 10px 15px;
  }
}