.faq-accordion {
    background: transparent;
    padding: 60px 20px;
    direction: rtl;
}
.faq-accordion__inner {
    max-width: 800px;
    margin: 0 auto;
}
.faq-accordion__item {
    margin-bottom: 12px;
}
.faq-accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 20px;
    cursor: pointer;
    color: #fff;
    user-select: none;
    background: #000;
    border: 1px solid #fff;
}
.faq-accordion__question {
    flex: 1;
    font-size: 22px;
    line-height: 1.4;
}
.faq-accordion__toggle {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.faq-accordion__toggle::before,
.faq-accordion__toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-accordion__toggle::before {
    width: 18px;
    height: 2px;
}
.faq-accordion__toggle::after {
    width: 2px;
    height: 18px;
}
.faq-accordion__item.is-open .faq-accordion__toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-accordion__answer {
    padding: 24px 20px;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    background: #2a2a2a;
    border: 1px solid #fff;
    border-top: none;
}
