.dp-faq-wrapper {
  background: #fff;
  width: 100%;
  margin-bottom: 80px;
}

.dp-faq-item + .dp-faq-item {
  border-top: 1px solid #e5e5e5;
}

.dp-faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0 !important;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  color: #1a1a1a;
}

.dp-faq-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.dp-faq-question.active .dp-faq-arrow {
  transform: rotate(-135deg);
}

.dp-faq-answer {
  display: none;
  padding: 0 0 15px 0 !important;
}
.dp-faq-answer p {
  font-weight: 400;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}
.dp-faq-answer.open {
  display: block;
}
