.faq-block {
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;.faq-item .faq-question
    width: 100%;
    max-width: 100% !important;
    flex-direction: column;
}
.faq-left {
    width: 100%;
    font-weight: bold;
}

.faq-left > h2 {
    font-weight: 700;
}

.faq-right {
    width: 100%;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 15px;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

.faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.faq-item h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.faq-item .faq-answer {
    display: none;
    padding-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.faq-toggle {
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-item.active .faq-toggle::after {
    content: "-";
}

.faq-toggle::after {
    content: "+";
}


@media screen and (min-width: 768px) {
    .faq-block {
        padding: 20px;
        flex-direction: row;
    }
    .faq-left {
        width: 30%;
    }
    
    .faq-right {
        width: 70%;
    }
}