.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: var(--text-main, #F2FFF6); /* Default text color for dark background */
  background-color: var(--bg-color, #08160F); /* Main background color */
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer */
}

.page-privacy-policy__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px;
  background-color: var(--bg-color, #08160F); /* Ensure background for the whole section */
  overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Match hero image width */
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px; /* Space between image and content */
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken for visual effect */
}

.page-privacy-policy__hero-content {
  position: static;
  transform: none;
  max-width: 900px;
  padding: 0 20px;
  color: var(--text-main, #F2FFF6);
}

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

.page-privacy-policy__description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary, #A7D9B8);
  max-width: 700px;
  margin: 0 auto;
}

.page-privacy-policy__section {
  padding: 40px 20px;
  background-color: var(--bg-color, #08160F);
}

.page-privacy-policy__section:nth-of-type(even) {
  background-color: var(--card-bg, #11271B);
}

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

.page-privacy-policy__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text-main, #F2FFF6);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.page-privacy-policy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #11A84E 0%, #22C768 100%);
  border-radius: 2px;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  color: var(--text-secondary, #A7D9B8);
}

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

.page-privacy-policy__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-privacy-policy__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text-secondary, #A7D9B8);
}

.page-privacy-policy__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary-color, #11A84E);
  font-weight: bold;
}

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy a {
  color: var(--primary-color, #11A84E);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
  color: var(--secondary-color, #22C768);
  text-decoration: underline;
}

/* FAQ styles */
.page-privacy-policy__faq-list {
  margin-top: 30px;
}

.page-privacy-policy__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-main, #F2FFF6);
  background-color: rgba(17, 168, 78, 0.1);
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-privacy-policy__faq-question:hover {
  background-color: rgba(17, 168, 78, 0.2);
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--primary-color, #11A84E);
}

.page-privacy-policy__faq-answer {
  padding: 0 20px 20px;
  color: var(--text-secondary, #A7D9B8);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-answer {
  max-height: 1000px;
  padding-top: 10px;
}

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

  .page-privacy-policy__hero-content {
    padding: 30px 15px;
    width: 100%;
    box-sizing: border-box;
  }

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

  .page-privacy-policy__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 10px;
  }

  .page-privacy-policy__description {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }

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

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

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

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

  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .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__faq-question {
    padding: 15px;
    font-size: 1rem;
  }

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