.faq-block {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  padding: 32px;
  margin-top: 50px;
  margin-bottom: 60px;
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  color: #111;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #365edc;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  color: #365edc;
  transition: transform 0.3s ease;
}

.faq-question.open::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  font-size: 15px;
  color: #444;
  margin-top: 12px;
  line-height: 1.8;
}
