.faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 100px;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 50px;
    color: #0A2A43;
    text-align: center;
}

.faq__item {
    max-width: 48%;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e9ec;
    border-left: 4px solid #F36D21;
    border-radius: 6px;
    padding: 20px 24px;
    box-shadow: 0 4px 12px rgba(10, 42, 67, 0.08);
    transition: box-shadow .25s ease, transform .25s ease;
    cursor: pointer;
}

.faq__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(10, 42, 67, 0.15);
}

.faq__question {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq__icon {
    width: 38px;
    height: 38px;
    background: #0A2A43;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #0A2A43;
}

.faq__arrow {
    margin-left: auto;
    width: 14px;
    height: 14px;
    border-right: 2px solid #F36D21;
    border-bottom: 2px solid #F36D21;
    transform: rotate(45deg);
    transition: .25s ease;
}

.faq__item.active .faq__arrow {
    transform: rotate(-135deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    padding-left: 54px;
    transition: max-height .3s ease;
}

.main-footer .widget-section .links-widget .links-list li a:before {
    color: #fdfdfd !important;
}


@media screen and (max-width: 1100px) {
    .faq__item {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .faq .faq__icon {
        min-width: 20px;
        width: 20px;
        height: 20px;
    }

    .faq__answer {
        padding-left: 35px;
        margin-top: 20px;
    }
}