/* Accordion Styles */
.accordion-container {
  width: 100%;
  margin-bottom: 20px;
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion-toggle {
  display: none;
}

.accordion-title {
  display: block;
  padding: 15px;
  background-color: #212529;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.5s ease;
}

.accordion-title:hover {
  background-color: #2b3035;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.accordion-toggle:checked + .accordion-title + .accordion-content {
  max-height: 6000px;
}
