.faq-list {
  text-align: left;
  margin-bottom: 32px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-soft);
}

details[open].faq-item {
  border-color: rgba(108, 99, 255, 0.3);
}

.faq-question {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 12px;
  line-height: 1;
  transition: transform 0.2s ease;
}

details[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 20px 16px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.faq-answer ul {
  margin-top: 8px;
  padding-left: 20px;
}

.faq-answer li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.faq-answer li strong {
  color: var(--text);
}
