
.faq-wrapper {
    margin-top: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    padding: 20px;
}
.faq-heading {
    font-size: 20px;
    margin-bottom: 20px;
}
.faq-item {
    margin-bottom: 10px;
}
.faq-question {
    width: 100%;
    background: #f9f9f9;
    border: none;
    padding: 15px;
    text-align: right;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: rtl;
}
.faq-question:hover {
    background: #e9e9e9;
}
.faq-number {
    margin-left: 10px;
    color: #00AEEF;
    font-weight: bold;
}
.faq-icon {
    transition: transform 0.3s ease;
    font-size: 14px;
}
.faq-question.open .faq-icon {
    transform: rotate(-90deg);
}
.faq-answer {
    display: none;
    padding: 10px 15px;
    background: #fafafa;
    margin-top: 5px;
    border-right: 3px solid #00AEEF;
    border-radius: 0 0 8px 8px;
    font-size: 15px;
    color: #555;
}
