.faq-item {
  width: 100%;
  margin: 14px 0;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  border: 0;
  background: linear-gradient(135deg, #07111f, #142033);
  color: #ffffff;
  padding: 18px 22px;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 700;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #ffffff;
}

.faq-answer p {
  margin: 0;
  padding: 18px 22px;
  color: #222222;
  font-size: 16px;
  line-height: 1.6;
}
