.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Matches shared.css body background */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 20px 60px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  text-align: center;
  background: linear-gradient(135deg, #1A1A1A, #0a0a0a);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-privacy-policy__main-title {
  font-size: 44px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Primary color */
  color: #1A1A1A; /* Contrasting text color */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-privacy-policy__cta-button--secondary {
  background-color: #1A1A1A; /* Secondary color */
  color: #FFD700; /* Primary color text */
  border: 2px solid #FFD700;
  box-shadow: none;
}

.page-privacy-policy__cta-button--secondary:hover {
  background-color: #000000;
  color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
}

.page-privacy-policy__content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #ffffff;
}

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

.page-privacy-policy__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
  padding-top: 20px;
}

.page-privacy-policy__content-section h2, .page-privacy-policy__content-section h3 {
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-privacy-policy__content-section h3 {
  font-size: 24px;
  color: #f0f0f0;
}

.page-privacy-policy__content-section p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-privacy-policy__content-section ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-privacy-policy__content-section li {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-privacy-policy__content-section a {
  color: #FFD700;
  text-decoration: underline;
}

.page-privacy-policy__content-section a:hover {
  color: #e6c200;
}

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

/* FAQ Section */
.page-privacy-policy__faq-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #1A1A1A; /* Dark background for contrast */
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

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

.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #2a2a2a;
  border: 1px solid #3a3a3a;
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #2a2a2a;
  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: #3a3a3a;
}

.page-privacy-policy__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700; /* Gold for questions */
  pointer-events: none;
}

.page-privacy-policy__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  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: 32px;
  height: 32px;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Plus to X effect */
}