
.bfa-accordion {
  border: none;
  max-width: 100%;
  margin: 2em 0;
}

.bfa-item {
  margin-bottom: 1em;
}

.bfa-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 66px;
  text-align: left;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 500;
  background-color: #ffffff;
  color: #000000;
  border: none;
  border-radius: 25px 0px 25px 0px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.bfa-trigger:hover,
.bfa-trigger:focus {
  background-color: #3c69af;
  color: #ffffff;
  outline: none;
}

.bfa-trigger[aria-expanded="true"] {
  background-color: #3c69af;
  color: #ffffff;
}

.bfa-trigger::after {
  content: "+";
  font-family: Arial, sans-serif;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.bfa-trigger[aria-expanded="true"]::after {
  content: "-";
}

.bfa-panel {
  padding: 10px 20px 10px 20px;
  background-color: #ffffff;
  animation: fadeIn 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  border-radius: 25px;
  margin-top: 11px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
