.home-faq .faq-list {
    max-width: 100%;
}

.faq-all-btn {
    padding: 16px 34px;
    border-radius: 18px;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    transition: 0.25s ease;
}

.faq-all-btn:hover {
    background: #052130;
}

.faq-mobile-btn {
    display: none;
}

@media (max-width: 768px) {
    .home-faq .section-head .faq-all-btn {
        display: none;
    }

    .faq-mobile-btn {
        display: flex;
        justify-content: center;
        margin-top: 28px;
    }

    .faq-mobile-btn .faq-all-btn {
        width: 100%;
        text-align: center;
    }
}