.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question-heading {
    margin: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
}

.faq-icon {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 4px 18px;
}

.faq-answer-inner p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.faq-item .faq-question-heading {
    color: var(--theme-general-color);
}

.faq-item.active .faq-question-heading {
    color: var(--theme-primary-color);
}
