@media (max-width: 1023px) {
  #faq {
    background: transparent;
    padding: 0;
    max-width: 100%;
    box-shadow: none;
    margin: 0;
  }
}

.faq-list {
  max-width: 1400px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3vh 0;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question span {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  content: url('/img/plus0.svg');
}

.faq-item[open] .faq-icon {
  content: url('/img/xmark0.svg');
}



.faq-answer {
  padding-bottom: 3vh;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

details[open] .faq-answer {
  max-height: 500px;
  opacity: 1;
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  font-size: 0.95rem;
  color: #999;
  text-align: left;
}