.accordion {
  border-top: 1px solid #ddd;
  max-width: 600px;
  margin: 2rem auto;
  font-family: sans-serif;
}

.accordion__item {
  border-bottom: 1px solid #ddd;
}

.accordion__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion__trigger:hover {
  text-decoration: underline;
}

.accordion__chevron {
  transition: transform 0.3s ease;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.9rem;
  padding: 0 1rem;
}

.accordion__content.open {
  padding: 1rem;
  max-height: 500px; /* Arbitrary max-height */
}

.accordion__item.open .accordion__chevron {
  transform: rotate(180deg);
}