.js-Accordion {
  margin: 0 auto;
}
.js-Accordion-title {
  background: #fff;
  border: 1px solid #ccc;

  cursor: pointer;
  display: block;
  padding: 1em 0.5em;
  width: 100%;

  color: #014995;
  font-weight: bold;
  text-align: left;
  margin-top: 10px;
  font-size: 15px;
}
.js-Accordion-title:first-child {
  border-top: 1px solid #ccc;
}
.js-Accordion-content {
  border-top: 0;
  height: 0;
  line-height: 1.5;
  overflow: hidden;
  transition: all 0.25s linear;
}
