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

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

.page-privacy-policy__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1A345E 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: #e0e0e0;
}

.page-privacy-policy__hero-description a {
  color: #FFD700;
  text-decoration: underline;
}

.page-privacy-policy__hero-description a:hover {
  color: #fff;
}

.page-privacy-policy__section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-privacy-policy__section:last-of-type {
  border-bottom: none;
}

.page-privacy-policy__section--alt {
  background-color: #f0f0f0;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #0A192F;
  margin-bottom: 30px;
  text-align: center;
  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.6em;
  color: #0A192F;
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444444;
}

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

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

.page-privacy-policy ul li strong {
  color: #0A192F;
}

.page-privacy-policy a {
  color: #007bff;
  text-decoration: none;
}

.page-privacy-policy a:hover {
  text-decoration: underline;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-privacy-policy__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

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

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: #0A192F;
  flex-grow: 1;
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #0A192F;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #fcfcfc;
  color: #555555;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed to fit content */
  padding: 20px 25px;
}

.faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
}

.faq-answer a {
  color: #0A192F;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-privacy-policy__hero {
    padding: 60px 15px;
  }

  .page-privacy-policy__hero-title {
    font-size: 2.5em;
  }

  .page-privacy-policy__hero-description {
    font-size: 1em;
  }

  .page-privacy-policy__section {
    padding: 40px 0;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-privacy-policy__subsection-title {
    font-size: 1.4em;
    margin-top: 30px;
  }

  .page-privacy-policy p, .page-privacy-policy ul li {
    font-size: 0.95em;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1em;
  }

  .faq-toggle {
    font-size: 1.5em;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-title {
    font-size: 2em;
  }

  .page-privacy-policy__section-title {
    font-size: 1.5em;
  }

  .page-privacy-policy__subsection-title {
    font-size: 1.2em;
  }

  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}