.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border-light);
}

.faq__item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-title);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq__question:hover {
  color: var(--blue-electric);
}

.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-primary);
  font-size: 1.3rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
  background: var(--gold-primary);
  color: var(--text-white);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq__item.active {
  background: var(--bg-warm);
  border-radius: 8px;
  padding: 0 20px;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .faq__question {
    font-size: 0.95rem;
    padding: 20px 0;
  }
}
