.accordion {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-header {
  background: #f7f7f7;
  padding: 12px 16px;
  font-weight: bold;
  cursor: pointer;
}

.accordion-content {
  display: none;
  padding: 12px 16px;
  background: #fff;
  line-height: 1.8;
}
.accordion.active .accordion-content {
  display: block;
}
