.accordion-section {
  background: #ffffff;
  padding: 2rem 0;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accordions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.accordions details {
  min-width: 80%;
  max-width: 80%;
  background: #EBF7F5;
  color: black;
  border-radius: 24px;
  border: none;
  transition: box-shadow 0.2s;
  overflow: wrap;
}

.accordions details[open] {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.accordions summary {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: 400;
  background: none;
  border: none;
  outline: none;
  list-style: none;
  user-select: none;
  padding: 32px;
}

.accordions details[open] summary::after {
  transform: rotate(-180deg);
}

.accordion-description {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 18px;
  color: #EBF7F5;
}
