.faq-section {
    background: hsl(217.24deg 67.44% 8.43%);;
}

.faq-label {
    display: inline-block;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.faq-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
}

.faq-title span {
    display: block;
    color: #0d6efd;
}

.faq-description {
    color: #6d7686;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 25px;
}

.faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition: 0.3s ease;
}

.faq-contact:hover {
    color: #0d6efd;
}

.faq-contact i {
    transition: 0.3s ease;
}

.faq-contact:hover i {
    transform: translateX(5px);
}


/* FAQ Items */

.faq-list {
    border-top: 1px solid #e5e8ed;
}

.faq-item {
    border-bottom: 1px solid #e5e8ed;
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 23px 5px;

    text-align: left;

    font-size: 16px;
    font-weight: 600;
    color: white;

    transition: 0.3s ease;
}

.faq-question:hover {
    color: #0d6efd;
}

.faq-question i {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1f5f9;
    color: #0d6efd;

    font-size: 12px;

    transition: transform 0.3s ease;
}


/* Change + to × when open */

.faq-question:not(.collapsed) i {
    transform: rotate(45deg);
    background: #0d6efd;
    color: #ffffff;
}

.faq-answer {
    padding: 0 45px 22px 5px;

    color: #70798a;
    font-size: 14px;
    line-height: 1.75;
}


/* Mobile */

@media (max-width: 991px) {

    .faq-title {
        font-size: 36px;
    }

    .faq-description {
        max-width: 650px;
    }
}

@media (max-width: 575px) {

    .faq-title {
        font-size: 32px;
    }

    .faq-question {
        font-size: 15px;
        padding: 20px 0;
    }

    .faq-answer {
        padding-left: 0;
        padding-right: 30px;
    }
}