/* style/privacy-policy.css */

/* Variables from custom colors */
:root {
  --page-privacy-policy-primary-color: #11A84E;
  --page-privacy-policy-secondary-color: #22C768;
  --page-privacy-policy-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-privacy-policy-card-bg: #11271B;
  --page-privacy-policy-background: #08160F;
  --page-privacy-policy-text-main: #F2FFF6;
  --page-privacy-policy-text-secondary: #A7D9B8;
  --page-privacy-policy-border: #2E7A4E;
  --page-privacy-policy-glow: #57E38D;
  --page-privacy-policy-gold: #F2C14E;
  --page-privacy-policy-divider: #1E3A2A;
  --page-privacy-policy-deep-green: #0A4B2C;
}

.page-privacy-policy {
  color: var(--page-privacy-policy-text-main); /* Default text color for the page */
  background-color: var(--page-privacy-policy-background); /* Page background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px;
}

.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: var(--page-privacy-policy-text-main);
  padding: 20px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--page-privacy-policy-gold);
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--page-privacy-policy-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

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

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

.page-privacy-policy__section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--page-privacy-policy-primary-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-privacy-policy__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--page-privacy-policy-gold);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-privacy-policy__text-block {
  margin-bottom: 20px;
  color: var(--page-privacy-policy-text-main);
  font-size: 1rem;
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  color: var(--page-privacy-policy-text-secondary);
}

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

.page-privacy-policy__card-bg {
  background-color: var(--page-privacy-policy-card-bg);
}

.page-privacy-policy__dark-bg {
  background-color: var(--page-privacy-policy-background);
}

.page-privacy-policy__contact-list {
  list-style: none;
  padding: 0;
}

.page-privacy-policy__contact-item {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--page-privacy-policy-text-main);
}

.page-privacy-policy__contact-link {
  color: var(--page-privacy-policy-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
  color: var(--page-privacy-policy-primary-color);
  text-decoration: underline;
}

/* Ensure all content images are responsive and not too small */
.page-privacy-policy img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Content images must be at least 200x200 if not hero */
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* 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__hero-content {
    padding: 15px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-privacy-policy__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-privacy-policy__container {
    padding: 0 15px;
  }

  .page-privacy-policy__section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 20px;
  }

  .page-privacy-policy__sub-title {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-privacy-policy__text-block {
    font-size: 0.95rem;
  }

  .page-privacy-policy__list-item {
    font-size: 0.95rem;
  }

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

  .page-privacy-policy__content-section,
  .page-privacy-policy__card-bg,
  .page-privacy-policy__dark-bg {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-privacy-policy__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Ensure no filter is used on images to change color */
.page-privacy-policy img:not(.page-privacy-policy__hero-image) {
  filter: none; /* Explicitly remove any default filter */
}