.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: #0d1117; /* Inherit from body or ensure dark */
}

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

.page-privacy-policy__hero-section {
  position: relative;
  padding: 80px 0 60px; /* Adjust padding for hero section */
  background: linear-gradient(135deg, #007bff, #0056b3); /* Primary brand color gradient */
  text-align: center;
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-privacy-policy__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffc107; /* Accent color for main title */
}

.page-privacy-policy__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__btn-primary {
  display: inline-block;
  background-color: #ffc107; /* Accent color for primary button */
  color: #0d1117; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__btn-primary:hover {
  background-color: #e0a800;
  color: #ffffff;
}

.page-privacy-policy__content-area {
  padding: 60px 0;
  background-color: #0d1117; /* Ensure dark background */
  color: #ffffff;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #007bff; /* Primary brand color for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-privacy-policy__sub-title {
  font-size: 1.6em;
  color: #ffc107; /* Accent color for sub titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__text-block p,
.page-privacy-policy__text-block ul,
.page-privacy-policy__text-block li {
  font-size: 1em;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-privacy-policy__text-block ul {
  list-style-type: disc;
  margin-left: 25px;
}

.page-privacy-policy__text-block li {
  margin-bottom: 8px;
}

.page-privacy-policy__link {
  color: #007bff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: #ffc107;
}

.page-privacy-policy__image-block {
  text-align: center;
  margin: 40px 0;
}

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

.page-privacy-policy__image-caption {
  margin-top: 15px;
  font-size: 0.9em;
  color: #cccccc;
}

.page-privacy-policy__faq-list {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-privacy-policy__faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-item:hover {
  background-color: rgba(0, 123, 255, 0.1);
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.1em;
  font-weight: bold;
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #ffc107;
}

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

.page-privacy-policy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px 0 20px;
}

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

.page-privacy-policy__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: rgba(0, 123, 255, 0.2); /* Semi-transparent primary color */
  border-radius: 8px;
}

.page-privacy-policy__cta-text {
  font-size: 1.4em;
  margin-bottom: 25px;
  color: #ffffff;
  font-weight: bold;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-privacy-policy__main-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.4em;
  }
  .page-privacy-policy__description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 60px 0 40px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-privacy-policy__main-title {
    font-size: 1.8em;
    padding: 0 10px;
  }
  .page-privacy-policy__description {
    font-size: 1em;
    padding: 0 10px;
  }
  .page-privacy-policy__btn-primary {
    padding: 12px 25px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-privacy-policy__content-area {
    padding: 40px 0;
  }
  .page-privacy-policy__section-title {
    font-size: 1.6em;
    padding: 0 15px;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.2em;
    padding: 0 15px;
  }
  .page-privacy-policy__text-block p,
  .page-privacy-policy__text-block ul,
  .page-privacy-policy__text-block li {
    font-size: 0.95em;
    padding: 0 15px;
  }
  .page-privacy-policy__text-block ul {
    margin-left: 35px;
  }
  .page-privacy-policy__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-privacy-policy__image-block,
  .page-privacy-policy__faq-list,
  .page-privacy-policy__cta-block {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-privacy-policy__faq-question {
    padding: 15px 0;
  }
  .page-privacy-policy__faq-answer {
    padding: 0 0;
  }
  .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    padding: 15px 0 20px;
  }
  .page-privacy-policy__cta-text {
    font-size: 1.2em;
  }
}