.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-privacy-policy__hero {
  background: linear-gradient(135deg, #FFD700, #8B0000);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.page-privacy-policy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #EEEEEE;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button:hover {
  background-color: #FFC107;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__text-link {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__hero .page-privacy-policy__text-link {
  color: #FFFFFF;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__text-link:hover {
  color: #8B0000;
}

.page-privacy-policy__hero .page-privacy-policy__text-link:hover {
  color: #FFC107;
}

.page-privacy-policy__content-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.page-privacy-policy__content-section--alt {
  background-color: #f8f8f8;
}

.page-privacy-policy__section-title {
  font-size: 2.5em;
  color: #8B0000;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-privacy-policy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-privacy-policy__subsection-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-privacy-policy__content-section p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444444;
}

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

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

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

.page-privacy-policy__faq-section {
  padding: 60px 0;
  background-color: #f0f0f0;
}

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

/* FAQ default state - answer hidden */
.faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  color: #555555;
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px;
  border-radius: 0 0 5px 5px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  color: #8B0000;
}

/* Question style */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #fffbe6; /* Light hover for better contrast */
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333333;
  font-weight: bold;
}

/* Toggle icon */
.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-privacy-policy__hero-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1.1em;
  }
  .page-privacy-policy__section-title {
    font-size: 2em;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__content-section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1em;
  }
  .page-privacy-policy__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.3em;
    margin-top: 30px;
  }
  .page-privacy-policy__content-section p,
  .page-privacy-policy__content-section li {
    font-size: 0.95em;
  }
  .faq-question {
    padding: 12px 15px;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero {
    padding: 60px 0;
  }
  .page-privacy-policy__hero-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__hero-description {
    font-size: 0.9em;
  }
  .page-privacy-policy__cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-privacy-policy__container {
    padding: 0 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.2em;
  }
  .page-privacy-policy__content-section ul {
    margin-left: 20px;
  }
}