section.FAQ h1,
section.FAQ h2{
    margin-bottom:1.5rem;
    font-size:3rem;
    font-weight: 700;
}

section.FAQ .faq-list{
    display:flex;
    flex-direction: column;
    gap:20px;
    padding:0;
    margin:0;
}
section.FAQ .faq-list li{
    background: var(--light-blue-color);
    padding: 20px 32px 20px 32px;
    list-style: none;
    border-radius: 20px;
    font-size:18px;
    position: relative;
}
.elite section.FAQ .faq-list li{
    background: var(--dark-elite-color);
    color:var(--white-color);
}
section.FAQ .faq-list li .opener{
    width: 40px;
    height: 40px;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color:var(--grey-color);
    border-radius: 20px;
    font-size:15px;
    position: absolute;
    right:22px;
    top:15px;
    cursor:pointer;
    transform: rotate(90deg);
    transition: 0.3s;
}
section.FAQ .faq-list li .opener:hover,
section.FAQ .faq-list li .opener.opened:hover{
    background: var(--accent-color);
    color:var(--white-color);
}
section.FAQ li .question{
    font-weight: 600;
    padding-right: 65px;
}
section.FAQ .faq-list li .answer{
    height:0;
    overflow: hidden;
    font-weight: 300;
    transition: 0.3s;
}
section.FAQ .faq-list li.opened .opener{
    transform: rotate(270deg);
    background: var(--white-color);
    color: var(--accent-color);
}
section.FAQ .faq-list li.opened .answer{
    height:auto;
}

section.FAQ .faq-form{
    font-size: 18px;
    position: relative;
    max-width: 550px;
    margin: 15px auto;
}
section.FAQ .faq-form a{
    color:var(--accent-color);
}
section.FAQ .faq-form .form-field{
    margin-bottom: 15px;
}
section.FAQ .faq-form a:hover{
    color:var(--yellow-color);
}
section.FAQ .faq-form h3{
    font-weight: 600;
    font-size: 28px;
}
section.FAQ .faq-form button{
    padding:6px 25px;
    border-radius: 20px;
    font-size: 15px;
}