.faq-wrapper{
    border: 2px solid #979aaa;
	border-radius: 2px;
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
}

.faq-wrapper button:not(:last-of-type) {
    border-bottom: 1px solid #ffffff !important;
}

/* Style the buttons that are used to open and close the faq-accordion faq-panel */
.faq-accordion {
    background-color: #979aaa !important;
    text-decoration: none !important;
    display: flex;
    justify-content: space-between;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
  }
  
  /* Add a background color to the button if it is clicked on (add the .faq-active class with JS), and when you move the mouse over it (hover) */
  .faq-active, .faq-accordion:hover {
    background-color: #ccc;
  }
  
  /* Style the faq-accordion faq-panel. Note: hidden by default */
  .faq-panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
  }