.accordion {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 5px;
  text-align: left;
  transition: 0.4s;
  width: 100%;
}

.panel {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height 0.7s ease-out;
}

.panel.show {
  max-height: 500px; /* 적절한 최대 높이로 설정 */
}
