.qa-section {
    padding: 40px 20px;
    background: #fff;
    font-family: Arial, sans-serif;
}

.qa-container {
    max-width: 1280px;
    margin: auto;
}

.qa-item {
    border: 2px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #fff;
    transition: 0.3s;
    padding: 12px;
}

/* QUESTION */

.qa-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    border: none;
    background: #fff;
    cursor: pointer;
}

.qa-label {
    width: 80px;
    min-width: 72px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 28px;
    font-weight: 700;

    flex-shrink: 0;
}

.qa-label-q {
    border-radius: 8px;
    background: #404040;
}

.qa-label-a {
    border-radius: 8px;
    background: #f6ab1d;
}

.qa-title {
    flex: 1;
    text-align: left;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

/* ARROW */

.qa-arrow {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-right: 10px;

    transition: transform .3s ease;
}

.qa-arrow svg {
    width: 32px;
    height: 32px;
    fill: #4d4d4d;
    transition: fill .3s ease;
    display: block;
}

.qa-item.active .qa-arrow {
    transform: rotate(180deg);
}

.qa-item.active .qa-arrow svg {
    fill: #f6ab1d;
}

/* ANSWER */

.qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}

.qa-item.active .qa-answer {
    max-height: 900px;
}

.qa-answer-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.qa-answer-content {
    flex: 1;

    margin: 16px 0;

    color: #666666;
    font-size: 20px;
    line-height: 1.7;
}

.qa-answer-content p {
    margin: 0 0 20px;
}

.qa-answer-content ul {
    margin: 0;
    padding-left: 22px;
}

.qa-answer-content li {
    margin-bottom: 16px;
}

/* HOVER */

.qa-item:hover {
    border-color: #d8d8d8;
}

/* ----------- MOBILE ---------*/

@media (max-width:991px) {

    .qa-title {
        font-size: 24px;
    }

    .qa-answer-content {
        margin: 8px 0;
        font-size: 18px;
    }

}

@media (max-width:768px) {

    .qa-section {
        padding: 40px 16px;
    }

    .qa-question {
        gap: 14px;
        align-items: center;
    }

    .qa-answer-inner {
        gap: 14px;
    }

    .qa-label {
        width: 52px;
        min-width: 52px;
        height: 40px;
        font-size: 22px;
    }

    .qa-label-q, .qa-label-a {
        border-radius: 4px;
    }

    .qa-title {
        font-size: 18px;
        line-height: 1.4;
    }

    .qa-arrow {
        width: 32px;
        height: 32px;
        margin-right: 0;
    }

    .qa-arrow svg {
        width: 24px;
        height: 24px;
    }

    .qa-answer-content {
        font-size: 16px;
        line-height: 1.6;
    }

    .qa-answer-content li {
        margin-bottom: 12px;
    }

}