.page-faq {
  color: #333333;
  background-color: #FFFFFF;
}

.page-faq__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-faq__hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  display: block;
}

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

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

.page-faq__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #F0F0F0;
}

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

.page-faq__btn {
  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;
}

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

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

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

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

.page-faq__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.page-faq__faq-list {
  margin-bottom: 60px;
}

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

.page-faq__question-title {
  font-size: 1.3em;
  color: #000000;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #EDEDED;
  transition: background-color 0.3s ease;
}

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

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

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

.page-faq__answer-content p {
  padding: 15px 0;
  margin: 0;
  line-height: 1.6;
  color: #333333;
}

.page-faq__answer-content a {
  color: #FCBC45;
  text-decoration: none;
}

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

.page-faq__contact-cta {
  text-align: center;
  padding: 40px 20px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 10px;
}

.page-faq__contact-text {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #F0F0F0;
}

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

.page-faq__btn--support:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-faq__explore-more {
  background-color: #F5F5F5;
  padding: 80px 20px;
  text-align: center;
}

.page-faq__explore-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 50px;
}

.page-faq__explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.page-faq__explore-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-faq__explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-faq__explore-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-faq__explore-card-title {
  font-size: 1.4em;
  color: #000000;
  margin: 20px 20px 10px 20px;
}

.page-faq__explore-card-description {
  font-size: 0.95em;
  padding: 0 20px 20px 20px;
  line-height: 1.5;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .page-faq__main-title {
    font-size: 3em;
  }
}

@media (max-width: 768px) {
  .page-faq__main-title {
    font-size: 2.5em;
  }
  .page-faq__intro-text {
    font-size: 1em;
  }
  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-faq__section-title,
  .page-faq__explore-title {
    font-size: 2em;
  }
  .page-faq__question-title {
    font-size: 1.1em;
  }
  .page-faq__contact-text {
    font-size: 1.1em;
  }
  .page-faq__explore-card-image {
    height: 180px;
  }
  .page-faq__hero-section {
    min-height: 400px;
  }
  .page-faq__content-area img,
  .page-faq__explore-grid img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-faq__main-title {
    font-size: 2em;
  }
  .page-faq__intro-text {
    font-size: 0.9em;
  }
  .page-faq__section-title,
  .page-faq__explore-title {
    font-size: 1.8em;
  }
  .page-faq__question-title {
    font-size: 1em;
    padding: 15px;
  }
  .page-faq__answer-content p {
    padding: 10px 0;
  }
  .page-faq__contact-text {
    font-size: 1em;
  }
  .page-faq__explore-grid {
    grid-template-columns: 1fr;
  }
  .page-faq__explore-card-image {
    height: 150px;
  }
}