.section.faq .page-content ul {
    list-style: none;
}

.header__social-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    border-radius: 0.5rem;
    padding: 0.625rem;
    width: 36px;
    height: 36px;
    color: var(--white);
}

.header__social-item a:hover {
    background-color: var(--white);
    color: var(--black);
}

.header__contact-social-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-item__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 8px;
    row-gap: 10px;
    padding: 15px 0 5px;
}

.product-item__btn {
    padding: 0.82rem 1.50rem;
    font-size: 0.90rem;
    min-width: 45% !important;
}

.product-item__btn-callback {
    color: var(--white);
    background: var(--grad, linear-gradient(135deg, rgb(24, 30, 46), rgb(109, 158, 198) 75%));
}

.product-item__btn-callback:hover {
    color: #000;
    background: white;
}

@media (max-width:991px) {
    .product-item__btn {
        width: 50% !important;
    }
}

@media (max-width:640px) {
    .product-item__footer {
        flex-direction: column;
    }
    .product-item__btn {
        width: 100% !important;
    }
}