.page-faq {
  color: #333333; /* Deep gray text for readability on light background */
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-faq__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  min-height: 400px;
  overflow: hidden;
  color: #FFFFFF;
  background-color: #000000; /* Dark background for hero text */
}

.page-faq__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
}

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

.page-faq__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-faq__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

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

.page-faq__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-faq__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-faq__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.page-faq__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-faq__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
}

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

.page-faq__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

.page-faq__accordion-item {
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #F9F9F9;
}

.page-faq__accordion-header {
  font-size: 1.3em;
  padding: 20px;
  background-color: #EFEFEF;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000000;
  margin: 0;
  font-weight: bold;
}

.page-faq__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-faq__accordion-header.active::after {
  content: '-';
  transform: rotate(0deg);
}

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

.page-faq__accordion-content.open {
  max-height: 500px; /* Adjust as needed for content height */
  padding: 20px;
}

.page-faq__accordion-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333333;
}

.page-faq__accordion-content a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

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

.page-faq__button--register-small,
.page-faq__button--login-small,
.page-faq__button--download-app,
.page-faq__button--promotions {
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  margin-top: 10px;
}

.page-faq__button--register-small {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #000000;
}

.page-faq__button--register-small:hover {
  background-color: #E0E0E0;
}

.page-faq__button--login-small {
  background-color: #FCBC45;
  color: #000000;
  border: 1px solid #FCBC45;
}

.page-faq__button--login-small:hover {
  background-color: #E0E0E0;
}

.page-faq__button--download-app {
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #000000;
}

.page-faq__button--download-app:hover {
  background-color: #333333;
}

.page-faq__button--promotions {
  background-color: #FCBC45;
  color: #000000;
  border: 1px solid #FCBC45;
}

.page-faq__button--promotions:hover {
  background-color: #E0E0E0;
}

.page-faq__contact-cta {
  text-align: center;
  padding: 60px 20px;
  background-color: #F0F0F0;
  border-radius: 10px;
  margin-top: 40px;
}

.page-faq__contact-title {
  font-size: 2em;
  margin-bottom: 20px;
  color: #000000;
}

.page-faq__contact-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #333333;
}

.page-faq__button--contact {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-faq__button--contact:hover {
  background-color: #333333;
  border-color: #333333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-faq__hero-title {
    font-size: 2.5em;
  }

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

  .page-faq__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-faq__button {
    width: 100%;
    padding: 12px 20px;
  }

  .page-faq__section-title {
    font-size: 2em;
  }

  .page-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-faq__accordion-content {
    padding: 15px;
  }

  .page-faq__contact-title {
    font-size: 1.8em;
  }

  .page-faq__contact-description {
    font-size: 0.95em;
  }

  .page-faq__container {
    padding: 20px 15px;
  }

  .page-faq__hero-section {
    padding: 40px 15px;
  }

  /* Mobile content area images must not overflow */
  .page-faq img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-faq__hero-section {
    min-height: 300px;
  }

  .page-faq__section-title {
    font-size: 1.8em;
  }

  .page-faq__accordion-header {
    font-size: 1em;
  }
}