.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-secondary, #A7D9B8); /* Default text color for the page */
  background-color: var(--background, #08160F); /* Default background for the page */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 40px; /* Space below content */
  background-color: var(--deep-green, #0A4B2C); /* Darker background for hero */
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  margin-top: 20px; /* Space between image and text */
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  color: var(--text-main, #F2FFF6);
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  transition: background-color 0.3s ease, transform 0.3s ease;
  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: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-privacy-policy__cta-button--secondary {
  background: transparent;
  border: 2px solid var(--gold, #F2C14E);
  color: var(--gold, #F2C14E);
  margin-left: 20px;
}

.page-privacy-policy__cta-button--secondary:hover {
  background: var(--gold, #F2C14E);
  color: var(--deep-green, #0A4B2C);
}

.page-privacy-policy__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-privacy-policy__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider, #1E3A2A);
}

.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: var(--gold, #F2C14E);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-privacy-policy__paragraph {
  font-size: 1.1em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
  text-align: justify;
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  color: var(--text-secondary, #A7D9B8);
}

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

.page-privacy-policy__list-item strong {
  color: var(--text-main, #F2FFF6);
}

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  object-fit: cover;
}

.page-privacy-policy__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
  width: 40%;
  min-width: 250px; /* Ensure minimum display size */
}

.page-privacy-policy__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  width: 40%;
  min-width: 250px; /* Ensure minimum display size */
}

.page-privacy-policy__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  min-width: 300px; /* Ensure minimum display size */
}

.page-privacy-policy__contact-us .page-privacy-policy__list {
  list-style-type: none;
  margin-left: 0;
  text-align: center;
}

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

.page-privacy-policy__contact-us .page-privacy-policy__list-item a {
  color: var(--gold, #F2C14E);
  text-decoration: none;
}

.page-privacy-policy__contact-us .page-privacy-policy__list-item a:hover {
  text-decoration: underline;
}

.page-privacy-policy__cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Color contrast specific styles */
.page-privacy-policy__dark-bg {
  background-color: var(--deep-green, #0A4B2C);
  color: var(--text-main, #F2FFF6);
}

.page-privacy-policy__dark-bg .page-privacy-policy__paragraph,
.page-privacy-policy__dark-bg .page-privacy-policy__list-item {
  color: var(--text-secondary, #A7D9B8);
}

.page-privacy-policy__dark-bg .page-privacy-policy__section-title {
  color: var(--gold, #F2C14E);
}

/* Clear floats for images */
.page-privacy-policy__data-sharing::after,
.page-privacy-policy__user-rights::after,
.page-privacy-policy__cookies-tracking::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-privacy-policy__image--left,
  .page-privacy-policy__image--right {
    width: 100%;
    float: none;
    margin-left: 0;
    margin-right: 0;
  }

  .page-privacy-policy__image--center {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-top: 10px !important; /* Small top padding for hero on mobile */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-privacy-policy__hero-content {
    padding: 15px;
  }

  .page-privacy-policy__main-title {
    font-size: 2.2em;
  }

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

  .page-privacy-policy__cta-button {
    font-size: 1em;
    padding: 12px 25px;
    margin: 0 !important; /* Reset margin for secondary button */
  }

  .page-privacy-policy__cta-button--secondary {
    margin-top: 15px !important; /* Add top margin for stacked buttons */
  }

  .page-privacy-policy__cta-wrapper {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-privacy-policy__hero-image-wrapper {
    max-height: 300px;
  }

  .page-privacy-policy__image--left,
  .page-privacy-policy__image--right,
  .page-privacy-policy__image--center {
    float: none;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    min-width: unset; /* Remove min-width for mobile */
  }
}