.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-body p {
  color: var(--color-text-muted);
  padding-bottom: 15px;
}

.accordion-header {
  background: none;
  border-bottom: 1px solid #eaeaea;
  border-left: none;
  border-right: none;
  border-top: none;
  color: var(--color-rusty-red);
  cursor: pointer;
  display: flex;
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 700;
  justify-content: space-between;
  padding: 15px 0;
  text-align: left;
  width: 100%;
}