.accordion {
  background-color: black;
  color: #009175;
  cursor: pointer;
  padding: 0.8rem;
  width: 100%;
  border: none;
  font-size: 1rem;
  text-align: left;
  outline: none;
  transition: 0.4s;
  display: block;
}

.active, .accordion:hover, .accordion:focus {
  background-color: black;
  color:white;
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border: 1px solid #009175;
  border-left: 2px solid #009175;
  border-right: 2px solid #009175;
}

.panel p, .panel h2, .panel ul li {
  font-size:0.75rem;
} 