.ag-why-efad {
    width: 100%;
    max-width: 1348px;
    margin: 0 auto;
    padding: 60px 20px;
    direction: rtl;
    background: transparent;
}

/* LTR Direction Modifier */
.ag-why-efad--dir-ltr {
    direction: ltr;
}

.ag-why-efad--dir-ltr .ag-why-efad__item-title {
    text-align: left;
}

.ag-why-efad--dir-ltr .ag-why-efad__item-description {
    text-align: left;
}

.ag-why-efad__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.ag-why-efad__title {
    color: #FFFFFF;
    font-size: 40px;
    font-family: 'Al-Jazeera-Arabic', sans-serif;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

.ag-why-efad__line {
    width: 359px;
    height: 1px;
    background: #FAB93A;
    margin: 15px auto 0;
}

.ag-why-efad__items {
    display: flex;
    flex-direction: column;
}

.ag-why-efad__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(14, 113, 185, 0.56);
    gap: 40px;
}

.ag-why-efad__item-title-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
    width: 450px;
    /* Default total width for Title + Icon */
    justify-content: flex-end;
}

.ag-why-efad__item-title {
    color: #FFFFFF;
    font-size: 32px;
    font-family: 'Al-Jazeera-Arabic', sans-serif;
    font-weight: 400;
    margin: 0;
    text-align: right;
    width: auto;
    flex: 1;
}

.ag-why-efad__item-description {
    color: #FFFFFF;
    font-size: 20px;
    font-family: 'Al-Jazeera-Arabic', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    text-align: right;
    width: 500px;
    /* Default width for Description */
}

.ag-why-efad__item-icon {
    width: 73px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ag-why-efad__item-icon img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 1024px) {
    .ag-why-efad__item {
        gap: 30px;
    }

    .ag-why-efad__item-title {
        font-size: 26px;
    }

    .ag-why-efad__item-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .ag-why-efad__item {
        flex-direction: column !important;
        /* Force column on mobile regardless of side swap toggle */
        align-items: flex-start;
        gap: 15px;
        padding: 30px 0;
    }

    .ag-why-efad__item-title-wrap {
        width: 100% !important;
        justify-content: space-between;
        order: -1;
        /* Title/Image on top */
    }

    .ag-why-efad__item-description {
        width: 100% !important;
        text-align: right;
    }

    .ag-why-efad__item-title {
        font-size: 22px;
        white-space: normal;
    }

    .ag-why-efad__item-icon {
        width: 50px;
    }

    .ag-why-efad__header {
        margin-bottom: 40px;
    }

    .ag-why-efad__title {
        font-size: 30px;
    }

    .ag-why-efad__line {
        width: 150px;
    }
}