@media (min-width: 1024px) {

    .faq-title {
        font-size: 40px;
        margin: 40px 0 35px 0;
    }

    .faq-wrapper {
        max-width: 900px;
    }

    .faq-item {
        transition: 0.4s ease;
    }

    .faq-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(59,130,246,0.15);
    }

}