.accordion {
  # background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.faq-active, .accordion:hover {
  background-color: #ccc;
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.faq-active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.sr-snippet__header {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    margin-left: 0;
    padding-top: 0;
}