.page-faq {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-faq__hero-section {
  padding-top: var(--header-offset, 120px);
  background-color: #1A1A1A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.page-faq__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-faq__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-faq__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-faq__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  min-width: 180px;
  text-align: center;
}

.page-faq__button--primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

.page-faq__button--primary:hover {
  background-color: #e6c200;
  color: #000000;
  transform: translateY(-3px);
}

.page-faq__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-faq__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-3px);
}

.page-faq__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle overlay */
}

.page-faq__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-faq__accordion-section {
  background-color: #0F0F0F;
  padding: 80px 0;
}

.page-faq__accordion-item {
  background-color: #1A1A1A;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-faq__accordion-header {
  background-color: #2a2a2a;
  color: #FFD700;
  padding: 20px 30px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-faq__accordion-header:hover {
  background-color: #3a3a3a;
}

.page-faq__accordion-question {
  margin: 0;
  color: #FFD700;
}

.page-faq__accordion-icon {
  font-size: 1.8em;
  transition: transform 0.3s ease;
}

.page-faq__accordion-header[aria-expanded="true"] .page-faq__accordion-icon {
  transform: rotate(45deg);
}

.page-faq__accordion-content {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #1A1A1A;
  color: #f0f0f0;
}

.page-faq__accordion-content p {
  padding: 20px 0;
  margin: 0;
  font-size: 1.1em;
}

.page-faq__accordion-content .page-faq__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-faq__accordion-content .page-faq__text-link:hover {
  text-decoration: underline;
}

.page-faq__cta-section {
  background-color: #1A1A1A;
  padding: 80px 20px;
  text-align: center;
}

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

.page-faq__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__button--cta {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
  padding: 15px 35px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-faq__button--cta:hover {
  background-color: #e6c200;
  color: #000000;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-faq__hero-title {
    font-size: 2.8em;
  }
  .page-faq__section-title {
    font-size: 2.4em;
  }
  .page-faq__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding-top: var(--header-offset, 120px);
    padding-bottom: 40px;
  }
  .page-faq__hero-title {
    font-size: 2.2em;
  }
  .page-faq__hero-description {
    font-size: 1em;
  }
  .page-faq__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq__button {
    width: 80%;
    max-width: 300px;
  }
  .page-faq__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-faq__accordion-header {
    font-size: 1.2em;
    padding: 15px 20px;
  }
  .page-faq__accordion-content p {
    font-size: 1em;
    padding: 15px 0;
  }
  .page-faq__accordion-content {
    padding: 0 20px;
  }
  .page-faq__cta-title {
    font-size: 1.8em;
  }
  .page-faq__cta-description {
    font-size: 1em;
  }
  .page-faq__button--cta {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  /* Ensure images in content area do not overflow */
  .page-faq__hero-image-wrapper img, /* Specific to hero image wrapper's img */
  .page-faq__accordion-content img, /* If any images were in accordion content */
  .page-faq__cta-section img, /* If any images were in CTA section */
  .page-faq__container img, /* Generic container images */
  .page-faq__hero-image { /* Direct hero image */
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-faq__hero-title {
    font-size: 1.8em;
  }
  .page-faq__section-title {
    font-size: 1.8em;
  }
  .page-faq__accordion-header {
    font-size: 1.1em;
    padding: 12px 15px;
  }
  .page-faq__accordion-icon {
    font-size: 1.5em;
  }
  .page-faq__cta-title {
    font-size: 1.6em;
  }
}