/* FAQ Section */
.faq-section {
  background-color: #000;
  padding: 50px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.faq-left {
  position: -webkit-sticky;
  position: sticky;
  top: 140px;
}

.admin-bar .faq-left {
  top: 172px;
}

.faq-badge {
  margin-bottom: 24px;
}

.faq-title {
  margin: 0 0 16px 0;
}

.faq-description {
  margin: 0;
}

.faq-right {
  width: 100%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  border-radius: 16px;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 18px;
}

.faq-question h4 {
  font-size: clamp(1.2rem, 1.05rem + 0.55vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  flex: 1;
  line-height: 1.28;
}

.faq-icon {
  width: 42px;
  height: 42px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.faq-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  background: none;
  transform: rotate(45deg);
}

.faq-item:hover .faq-icon {
  background: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-answer-content {
  padding: 0 0 24px 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

@media (max-width: 920px) {
  .faq-container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .faq-left {
    position: relative !important;
    top: auto !important;
  }
}

@media (max-width: 768px) {
  .faq-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .faq-question h4 {
    font-size: 18px;
  }

  .faq-question {
    padding: 18px 0;
    gap: 14px;
  }

  .faq-icon {
    width: 36px;
    height: 36px;
  }

  .faq-icon svg {
    width: 18px;
    height: 18px;
  }

  .faq-answer-content {
    font-size: 15px;
    padding-bottom: 18px !important;
  }
}
