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

.faq-item h3 {
    cursor: pointer;
    transition: color .3s ease;
}

.faq-item h3:hover {
    color: #2ea3f2;
}

.faq-content {
    display: none;
    animation: fadeIn .4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.fa {
    margin-left: 8px;
}

.faq-l4l-rtl {
    direction: rtl;  /* Switch text direction */
    text-align: right;
}
