.faq-accordion {
    direction: rtl;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: #f7f7f7;
    border: none;
    padding: 15px;
    text-align: right;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    outline: none;
    position: relative;
    padding-right: 30px;
}

.faq-question::after {
    content: "◀"; /* Down arrow */
    position: absolute;
    font-size: 12px;
    right: 12px;
    transition: transform 0.3s;
    top: 19px;
}

.faq-question.active::after {
    transform: rotate(-90deg); /* Rotate arrow to point left when active */
}

.faq-answer {
    display: none;
    padding: 15px;
    background: #fff;
    text-align: right;
    font-size: 14px;
    color: #666;
}

.faq-answer a {
    text-decoration: underline;
    color: #961419;
    font-weight: bold;
}
