.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-item {
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

/* Question */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
}

/* Icon */
.faq-icon::after {
  content: "+";
}

.faq-item.active .faq-icon::after {
  content: "–";
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
