.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background);
}

.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 */
  color: var(--text-main);
  background: linear-gradient(180deg, var(--deep-green) 0%, var(--background) 100%);
  overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

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

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  background: rgba(8, 22, 15, 0.6); /* Semi-transparent background for text */
  border-radius: 10px;
  margin-top: 20px;
}

.page-privacy-policy__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-privacy-policy__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main);
  border: none;
}

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

.page-privacy-policy__btn-secondary {
  background: var(--card-bg);
  color: var(--text-main);
  border: 1px solid var(--border);
  margin-left: 15px;
}

.page-privacy-policy__btn-secondary:hover {
  background: var(--deep-green);
  transform: translateY(-2px);
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background);
  color: var(--text-main);
}

.page-privacy-policy__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-privacy-policy__section-title {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--gold);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--divider);
}

.page-privacy-policy__sub-title {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--text-main);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-secondary);
}

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

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

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

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

.page-privacy-policy__contact-info {
  font-size: 16px;
  margin-bottom: 10px;
}

.page-privacy-policy__faq-list {
  margin-top: 30px;
}

.page-privacy-policy__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-privacy-policy__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  background-color: var(--deep-green);
  color: var(--text-main);
}

.page-privacy-policy__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-privacy-policy__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

.page-privacy-policy__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 10px;
  color: var(--gold);
}

.page-privacy-policy__faq-answer {
  padding: 15px 20px;
  font-size: 16px;
  color: var(--text-secondary);
  border-top: 1px solid var(--divider);
}

.page-privacy-policy__faq-answer p {
  margin-bottom: 0;
}

.page-privacy-policy__cta-section {
  background: var(--card-bg);
  padding: 60px 20px;
  text-align: center;
  color: var(--text-main);
  border-top: 1px solid var(--border);
}

.page-privacy-policy__cta-section .page-privacy-policy__section-title {
  color: var(--gold);
  border-bottom: none;
  margin-top: 0;
}

.page-privacy-policy__cta-section .page-privacy-policy__description {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-privacy-policy__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-content {
    padding: 30px 15px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(24px, 5vw, 40px);
  }

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

  .page-privacy-policy__content-area {
    padding: 30px 15px;
  }

  .page-privacy-policy__section-title {
    font-size: clamp(22px, 4vw, 32px);
  }

  .page-privacy-policy__sub-title {
    font-size: clamp(18px, 3vw, 24px);
  }
}

@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: 20px 10px;
    margin-top: 10px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(20px, 6vw, 32px);
  }

  .page-privacy-policy__description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__cta-button,
  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-secondary,
  .page-privacy-policy a[class*="button"],
  .page-privacy-policy a[class*="btn"] {
    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;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-privacy-policy__button-group {
    flex-direction: column;
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-privacy-policy__content-area,
  .page-privacy-policy__container,
  .page-privacy-policy__cta-section {
    padding: 25px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-privacy-policy__section-title {
    font-size: clamp(20px, 5vw, 28px);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__sub-title {
    font-size: clamp(17px, 4vw, 22px);
    margin-top: 25px;
    margin-bottom: 10px;
  }

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

  .page-privacy-policy__faq-item summary {
    font-size: 16px;
    padding: 12px 15px;
  }

  .page-privacy-policy__faq-answer {
    padding: 12px 15px;
    font-size: 15px;
  }

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

@media (max-width: 480px) {
  .page-privacy-policy__hero-section {
    padding: 30px 10px;
    padding-top: 10px !important;
  }

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

  .page-privacy-policy__main-title {
    font-size: clamp(18px, 7vw, 28px);
  }

  .page-privacy-policy__description {
    font-size: 14px;
  }

  .page-privacy-policy__cta-button {
    padding: 10px 20px;
    font-size: 15px;
  }

  .page-privacy-policy__content-area,
  .page-privacy-policy__cta-section {
    padding: 20px 10px;
  }

  .page-privacy-policy__section-title {
    font-size: clamp(18px, 6vw, 26px);
  }

  .page-privacy-policy__sub-title {
    font-size: clamp(16px, 5vw, 20px);
  }

  .page-privacy-policy p,
  .page-privacy-policy__list-item {
    font-size: 14px;
  }

  .page-privacy-policy__faq-item summary {
    font-size: 15px;
    padding: 10px 12px;
  }

  .page-privacy-policy__faq-answer {
    padding: 10px 12px;
    font-size: 14px;
  }
}