.accordion {
  width: 100%;
  max-width: 600px;
  margin: 0px auto;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  padding: 13px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Roboto Slab", serif;
}

.accordion-header:hover {
  background-color: #f5f5f5;
}

.accordion-content {
  padding: 15px;
  display: none;
  font-size: 16px;
}

.accordion-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.accordion-content ul li {
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
}

.accordion-header.active .toggle-icon {
  transform: rotate(0deg);
}

.toggle-icon {
  font-size: 18px;
  transition: transform 0.2s;
}


