.accordion2 {
  background-color: #f5f5f5;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  font-size: 20px;
  border: none;
  border-radius: 4px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.active2, .accordion2:hover {
  background-color: #feb900;
  color: #fff;
}

.accordion2::before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 900;
  color: #feb900;
  transition: all 0.3s ease;
}

.active2::before,
.accordion2:hover::before {
  transform: rotate(180deg);
  color: #fff;
}

.panel2 {
  padding: 0 18px;
  width: 100%;
  background-color: #fff;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.active2 + .panel2 {
  max-height: 500px;
}
