.custom-faq {
  margin-top: 40px;
}

.custom-faq-item {
  border-bottom: 1px solid #dcdcdc;
}

.custom-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 22px 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.custom-faq-question:hover {
  color: #95b85c;
}

.custom-faq-question::after {
  content: "+";
  font-size: 32px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.custom-faq-item.active .custom-faq-question::after {
  content: "−";
}

.custom-faq-answer {
  display: none;
  padding: 0 0 25px 0;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

.custom-faq-item.active .custom-faq-answer {
  display: block;
}

@media only screen and (max-width: 767px) {

  .custom-faq-question {
    font-size: 18px;
    padding: 18px 0;
  }

  .custom-faq-question::after {
    font-size: 26px;
  }

  .custom-faq-answer {
    font-size: 16px;
    line-height: 1.6;
  }

}

