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

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

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

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

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

.page-privacy-policy__main-title {
  font-size: clamp(2em, 3.5vw, 2.8em);
  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;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-privacy-policy__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-privacy-policy__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-privacy-policy__btn-secondary {
  background: #11271B;
  color: var(--text-main);
  border: 2px solid var(--border-color);
}

.page-privacy-policy__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(46, 122, 78, 0.2);
  background: #1e3a2a;
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background: #08160F; /* Background color */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: var(--glow);
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: bold;
  border-bottom: 2px solid var(--divider);
  padding-bottom: 10px;
}

.page-privacy-policy__section-title:first-of-type {
  margin-top: 0;
}

.page-privacy-policy__sub-title {
  font-size: 1.6em;
  color: var(--gold);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.page-privacy-policy__list li {
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 1em;
}

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

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

.page-privacy-policy__faq-section {
  padding: 60px 20px;
  background: var(--card-b-g);
  text-align: center;
  color: var(--text-main);
}

.page-privacy-policy__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-privacy-policy__faq-item {
  background: #1e3a2a;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background: #11271B;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.page-privacy-policy__faq-question:hover {
  background: #1e3a2a;
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow);
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-question {
  border-bottom-color: var(--divider);
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  color: var(--gold);
}

.page-privacy-policy__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-privacy-policy__faq-answer p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

/* Ensure details summary marker is hidden */
.page-privacy-policy__faq-item summary {
  list-style: none;
}

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

.page-privacy-policy__cta-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 80px 20px;
  background: var(--deep-green);
  color: var(--text-main);
  text-align: center;
}

.page-privacy-policy__cta-content {
  flex: 1 1 500px;
  max-width: 700px;
}

.page-privacy-policy__cta-title {
  font-size: 2.5em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-privacy-policy__cta-description {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-image-wrapper {
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-privacy-policy__cta-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: clamp(2em, 4vw, 2.5em);
  }

  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }

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

  .page-privacy-policy__cta-section {
    flex-direction: column;
    text-align: center;
  }

  .page-privacy-policy__cta-image-wrapper {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 40px;
  }
}

@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-image-wrapper {
    margin-bottom: 20px;
  }

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

  .page-privacy-policy__content-area,
  .page-privacy-policy__faq-section,
  .page-privacy-policy__cta-section,
  .page-privacy-policy__cta-content,
  .page-privacy-policy__cta-image-wrapper,
  .page-privacy-policy__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(1.8em, 6vw, 2.2em);
  }

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

  .page-privacy-policy__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .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;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center;
  }

  .page-privacy-policy__section-title {
    font-size: 1.6em;
  }

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

  .page-privacy-policy__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-privacy-policy__faq-answer {
    padding: 0 20px 15px;
  }

  .page-privacy-policy__cta-title {
    font-size: 2em;
  }

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

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: clamp(1.6em, 7vw, 2em);
  }

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

  .page-privacy-policy__cta-title {
    font-size: 1.8em;
  }
}