html {
  scroll-padding: 50px;
}
.accordion-box {
  color: #4A4B68; 
  background-color: #fff;
  transition: .4s;
  border-radius: 10px;
}
.accordion-box:not(:last-child) {
  margin-bottom: 10px;
}
.accordion-box.active, .accordion-box:hover {
  background-color: #4A4B68; 
  color: #F1F1F4;
}
.accordion {
  padding: 10px 20px;
  width: 100%;
  text-align: start;
  position: relative;
  font-weight: 500;
}

.accordion-box.active .down {
  transform: rotate(180deg);
}

.panel {
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  max-height: 0;
  transition: 0.4s;
}

.panel p { 
  padding: 0 20px 10px;
  color: #F1F1F4;
  font-size: 14px;
}