/* This rule sets the background and text color for all accordion buttons */
.accordion-button {
  background-color: #007bff !important; /* Blue background */
  color: #fff !important; /* White text */
}

/* This rule changes the background and text color for expanded accordion buttons */
.accordion-button:not(.collapsed) {
  background-color: #0056b3 !important; /* Darker blue when expanded */
  color: #fff !important;
}
