.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light backgrounds */
  background: var(--dark-bg-1); /* Body background from shared.css */
}

.page-privacy-policy__main-content-section {
  padding: 40px 20px;
  padding-top: 120px; /* Desktop: Adjust for fixed header */
  background: var(--dark-bg-1);
  color: #ffffff; /* Light text for dark background */
}

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

.page-privacy-policy__title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.3;
}

.page-privacy-policy__intro-text {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 50px;
  color: #f0f0f0;
}

.page-privacy-policy__intro-text strong {
  color: #ffffff;
}

.page-privacy-policy__content-card {
  background: #ffffff; /* White background for content cards */
  color: #333333; /* Dark text for white background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.page-privacy-policy__content-card p {
  margin-bottom: 15px;
  font-size: 16px;
}

.page-privacy-policy__content-card ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-privacy-policy__content-card li {
  margin-bottom: 8px;
  font-size: 16px;
}

.page-privacy-policy__section-heading {
  font-size: 28px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 25px;
  text-align: center;
}

.page-privacy-policy__sub-heading {
  font-size: 22px;
  font-weight: bold;
  color: #28a745;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__link {
  color: #007bff;
  text-decoration: underline;
  font-weight: bold;
}

.page-privacy-policy__link:hover {
  color: #0056b3;
  text-decoration: none;
}

.page-privacy-policy__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* FAQ Section Styles */
.page-privacy-policy__faq-section {
  margin-top: 50px;
  padding: 40px;
  background: #f8f9fa; /* Light background for FAQ */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-privacy-policy__faq-heading {
  font-size: 32px;
  font-weight: bold;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
}

.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-privacy-policy__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #e9ecef;
  border-radius: 0 0 5px 5px;
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-privacy-policy__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-privacy-policy__faq-question:active {
  background: #eeeeee;
}

.page-privacy-policy__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333;
}

.page-privacy-policy__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
  color: #333;
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-privacy-policy__main-content-section {
    padding-top: 100px !important; /* Mobile: Adjust for fixed header */
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-privacy-policy__title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__intro-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-privacy-policy__content-card {
    padding: 25px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__content-card p,
  .page-privacy-policy__content-card li {
    font-size: 15px;
  }

  .page-privacy-policy__section-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__sub-heading {
    font-size: 19px;
    margin-top: 25px;
    margin-bottom: 12px;
  }

  .page-privacy-policy__faq-section {
    padding: 20px;
    margin-top: 30px;
  }

  .page-privacy-policy__faq-heading {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .page-privacy-policy__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-privacy-policy__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-privacy-policy__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-privacy-policy__faq-answer {
    padding: 0 15px;
  }
  
  .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    padding: 15px !important;
  }

  /* Mobile image responsiveness */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-privacy-policy__main-content-section,
  .page-privacy-policy__content-card,
  .page-privacy-policy__container,
  .page-privacy-policy__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}