.faq-section {
    max-width: 800px;
    margin: 20px auto 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.faq-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
    color: #333;
    font-family: Sahel-SemiBold;
    padding-top: 20px;
}
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item button {
    font-family: Sahel;
    font-size: 18px;
    text-align: right;
}
.faq-question {
    font-family: Sahel-Light;
    font-size: 18px;
    direction: rtl;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-question:focus {
    outline: none;
}
.faq-question p {
    direction: rtl;
    margin: 0;
}
.icon {
    font-size: 1.5rem;
    color: #007bff;
}
.faq-answer {
    text-align: justify;
    padding: 10px;
    font-size: 1rem;
    color: #555;
    display: none;
}
.faq-answer p {
    direction: rtl;
    margin: 0;
}
.faq-question.active .icon {
    content: "-";
}
@media screen and (max-width: 600px) {
    .faq-section {
        margin: 0 20px 40px 20px;
    }
    .faq-title {
        font-size: 26px;
    }
    .faq-item button {
        font-size: 15px;
    }
    .faq-question p {
        font-size: 17px;
    }
    .faq-answer p {
        font-size: 15px;
    }
}