

.description-wrapper {
  margin: 30px 0;
}


.question {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 10px 20px;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
  user-select: none;
}

.question::after {
  font-family: "Material Symbols Outlined";
  content: '\e5cd';
  font-size: 22px;
  transform: rotate(45deg);
}

.question.active {
  background: #4a7045;
  border-bottom: none;
  border-radius: 0px;
  color: #fff;
}

.question.active::after {
  transform: rotate(90deg);
}

.answer {
  margin: 0;
  padding: 10px 20px;
  font-size: 18px;
  display: none;
}

.answer.active {
  display: block;
  border-top: none;
  border: 1px solid #ccc;
  color: #000;
}