/* CLOSED STATE */
.accordion-section .title-red-open {
  background-color: rgb(243, 207, 127);
  color: #000;
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.accordion-section {
  margin-bottom: 10px;
  color: #000;
}
.content .accordion-section li {
  font-size: 1em;
}
/* OPEN STATE */
.accordion-section.open .title-red-open {
  background-color: #ffffff;
  color: #000;
}
/* CONTENT */
.red-title-hidden {
  padding: 15px;
  background: #fff;
  border-top: 1px solid #eee;
}
/* + ICON */
.title-red-open::after {
  content: "+";
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.2s ease;
}
/* CHANGE + TO – WHEN OPEN */
.accordion-section.open .title-red-open::after {
   content: "–";
}