.faq-item {
    background-color: #FFFFFF;
    border: 1px solid var(--lightgray);
    border-radius: 10px;
    padding: 30px;
    margin-top: 15px;
}

.faq-item ol,
.faq-item ul {
    margin-bottom: 10px;
}

.faq-item ul li,
.faq-item ol li {
    position: relative;
    padding-left: 30px;
    margin-top: 10px;
}

.faq-item ul li:before,
.faq-item ol li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lightblue);
    display: inline-block;
    position: absolute;
    left: 12px;
    top: 10px
}

.faq-item ol li {
    list-style: none;
    counter-increment: item 1;
}

.faq-item ol li:before {
    content: counter(item) ". ";
    background: none;
    top: 10px;
    left: 6px;
}

.faq-item p {
    margin-bottom: 10px;
}

.faq-item table {
    border-collapse: collapse;
    width: 100%;
}

.faq-item table td {
    padding: 10px;
    border: 1px solid var(--lightblue);
}

.faq-item.active {
    background-color: var(--bg2);
    transition: all .3s;
}

.faq-item__preview {
    display: flex;
    align-items: center;
}


.preview-number {
    font-family: var(--solomon);
    font-weight: 600;
    font-size: 50px;
    line-height: 60px;
    text-align: left;
    color: var(--deepblue);
    margin-right: 24px;
}

.preview-text {
    cursor: pointer;
    width: 100%;
}

.preview-text .preview-text__title {
    display: flex;
    justify-content: space-between;
}

.preview-text .preview-text__title span {
    font-family: var(--solomon);
    font-weight: 600;
    font-size: 24px;
    line-height: 31px;
    color: var(--blue);
    max-width: 60%;
}

.faq-item.active .preview-text__title svg {
    transform: rotate(180deg);
}

.faq-item .preview-text__title svg path {
    stroke: var(--accent);
}

.faq-item__detail {
    display: none;
}

.faq-item__detail .detail-wrapper {
    margin-top: 8px;
}

.faq-item__detail .detail-problem__title {
    font-family: var(--solomon);
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    text-align: left;
    color: var(--deepblue);
}

.faq-item__detail .detail-text {
    font-family: var(--solomon);
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: left;
    color: var(--lightblue);
}

@media all and (max-width: 1024px) {
    .preview-text .preview-text__title span {
        max-width: 90%;
    }
}

@media(max-width: 768px) {
    .preview-text .preview-text__title span {
        font-size: 16px;
        line-height: 1.5;
    }
    .faq-item__detail .detail-text {
        font-size: 16px;
    }
    .faq-item__detail {
        font-size: 16px;
    }
}




