.faq-section + .faq-section {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid var(--border-primary);
}

.faq__list {
	margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Item */
.faq__item {
  background: var(--white);
  border: 1px solid var(--border-primary);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__item:hover {
  border-color: var(--border-dark);
  background: var(--bg-secondary);
}

/* Question */
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq__question-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq__item--active .faq__question-text {
  color: var(--text-primary);
}

/* Icon */
.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  border-radius: 50%;
  color: var(--primary);
  transition: all 0.3s ease;
}

.faq__item--active .faq__icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq__icon svg {
  display: block;
}

/* Answer */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item--active .faq__answer {
  max-height: 500px;
}

.faq__answer-content {
  padding: 0 2rem 1.5rem 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .faq {
    padding: 4rem 0;
  }

  .faq__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .faq__question {
    padding: 1.25rem 1.5rem;
  }

  .faq__question-text {
    font-size: 1rem;
  }

  .faq__answer-content {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.95rem;
  }

  .faq__icon {
    width: 28px;
    height: 28px;
  }

  .faq__icon svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 480px) {
  .faq__container {
    padding: 0 1rem;
  }

  .faq__question {
    padding: 1rem 1.25rem;
  }

  .faq__answer-content {
    padding: 0 1.25rem 1rem 1.25rem;
  }
}
