.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for dark background */
  background-color: var(--background-color); /* From shared.css */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--deep-green-color);
  overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-privacy-policy__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* Responsive font size for H1 */
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-privacy-policy__description {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-privacy-policy__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

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

.page-privacy-policy__content-section {
  padding: 60px 20px;
  background-color: var(--background-color);
  color: var(--text-main);
}

.page-privacy-policy__dark-section {
  background-color: var(--card-bg);
  color: var(--text-main);
}

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

.page-privacy-policy__section-title {
  font-size: clamp(1.8em, 2.8vw, 2.5em);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-privacy-policy__sub-title {
  font-size: clamp(1.4em, 2.2vw, 1.8em);
  color: var(--glow-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-privacy-policy__text-block p {
  margin-bottom: 15px;
  color: var(--text-main);
  font-size: 1.05em;
  line-height: 1.7;
}

.page-privacy-policy__text-block strong {
  color: var(--glow-color);
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: var(--text-main);
}

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

.page-privacy-policy__list li strong {
  color: var(--text-main);
}

.page-privacy-policy__image-with-text-block {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.page-privacy-policy__image-with-text-block .page-privacy-policy__text-block {
  flex: 1;
}

.page-privacy-policy__image-wrapper {
  flex: 0 0 600px; /* Base width for image */
  max-width: 50%; /* Ensure it doesn't take more than half */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-privacy-policy__contact-section {
  padding: 80px 20px;
  background-color: var(--deep-green-color);
  text-align: center;
}

.page-privacy-policy__contact-section .page-privacy-policy__text-block {
  max-width: 800px;
  margin: 0 auto;
}

.page-privacy-policy__link {
  color: var(--gold-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: var(--glow-color);
}

.page-privacy-policy__btn-large {
  padding: 18px 35px;
  font-size: 1.1em;
  margin-top: 30px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-privacy-policy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-privacy-policy__main-title {
    font-size: 2em; /* Adjusted for mobile */
  }

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

  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-privacy-policy__content-section {
    padding: 40px 15px;
  }

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

  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

  .page-privacy-policy__image-with-text-block {
    flex-direction: column;
    gap: 30px;
  }

  .page-privacy-policy__image-with-text-block.reverse-order-mobile {
    flex-direction: column-reverse;
  }

  .page-privacy-policy__image-wrapper {
    max-width: 100%;
    flex: none;
  }

  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all image containers are responsive */
  .page-privacy-policy__hero-image-wrapper,
  .page-privacy-policy__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-privacy-policy__text-block p,
  .page-privacy-policy__list li {
    font-size: 1em;
  }
}