.accordion {
     color: #444;
    cursor: pointer;
    padding: 18px 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #C5C5C5;
    outline: none;
    transition: 0.4s;
	    margin: 0;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
	 color: #444;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding:  18px 0;
  background-color: white;
  display: none;
  overflow: hidden;
	margin-top: -16px;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.questions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

