
.faq-container {
    max-width: 1200px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: "Cairo", sans-serif;
}

h1 {
    text-align: center;
    color: #333;
}

.faq-section {
    margin-bottom: 30px;
}

.h2-tag {
    border-bottom: 2px solid #e2e2e2;
    padding-bottom: 5px;
    color: #333;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.faq-item {
    margin-bottom: 15px;
}

.question {
    display: flex;
    align-items: center;
    background-color: #f4f4f4;
    padding: 10px;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    justify-content: space-between;
    direction: ltr;
    text-align: right;
}

.icon {
    margin-right: 10px;
}

.answer {
    display: flex;
    align-items: center;
    background-color: #f4f4f4;
    padding: 10px;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    justify-content: space-between;
    direction: ltr;
    text-align: right;
}


.question:hover {
    background-color: #e9e9e9;
}
