﻿.faq-nop-title {
    margin: 0 0 30px;
    border-bottom: 1px solid #ddd;
    padding: 0 0 15px;
    font-size: 30px;
    font-weight: normal;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-title {
    position: relative;
    font-weight: 500;
    color: #444;
    font-size: 18px;
    padding: 20px 40px 20px 25px;
    background-color: #e9e9e9;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s ease-in-out;
}

.faq-item.expand .faq-title,
.faq-title:hover {
    background-color: #ddd;
}

.faq-title::before {
    content: '\f078';
    display: inline-block;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 16px;
    transition: all 0.25s ease-in-out;
}

.faq-item.expand .faq-title::before {
    transform: rotate(180deg);
}

.faq-item .answer {
    padding: 30px;
    font-size: 16px;
    line-height: 1.7;
    background-color: #fff;
    box-shadow: 0 5px 5px 1px #ededed;
}

.faq-item .answer p {
    margin: 15px 0;
}

.faq-item .answer ul {
    list-style: initial;
    margin-left: 20px;
    margin-bottom: 15px;
    padding-left: 20px;
}
