.ag-home-about {
    --ag-about-title-color: #3192E8;
    --ag-about-desc-color: #333333;
    --ag-about-accent: #FAB93A;
    --ag-about-font: 'Al-Jazeera-Arabic', 'Arial', sans-serif;

    width: 100%;
    padding: 80px 0;
    overflow: hidden;
    direction: rtl;
    /* RTL by default as per design */
}

/* LTR Direction Modifier */
.ag-home-about--dir-ltr {
    direction: ltr;
}

.ag-home-about--dir-ltr .ag-home-about__content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ag-home-about__container {
    max-width: 1246px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.ag-home-about--image-right .ag-home-about__container {
    flex-direction: row-reverse;
}

.ag-home-about__content {
    flex: 1;
    text-align: right;
}

.ag-home-about__title-wrapper {
    margin-bottom: 40px;
    display: inline-block;
}

.ag-home-about__title {
    font-family: var(--ag-about-font);
    font-weight: 700;
    font-size: 40px;
    color: var(--ag-about-title-color);
    margin: 0;
}

.ag-home-about__line {
    width: 156px;
    height: 1.2px;
    background-color: var(--ag-about-accent);
    margin-top: 10px;
}

.ag-home-about__description {
    font-family: var(--ag-about-font);
    font-weight: 300;
    font-size: 24px;
    line-height: 1.6;
    color: var(--ag-about-desc-color);
    margin-bottom: 40px;
}

.ag-home-about__btn {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--ag-about-title-color);
    font-family: var(--ag-about-font);
    font-weight: 300;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.ag-home-about__btn:hover {
    transform: translateX(-5px);
}

.ag-home-about__icon-box {
    width: 30px;
    height: 30px;
    background-color: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ag-home-about__icon-box i {
    font-size: 16px;
    color: inherit;
}

.ag-home-about__icon-box svg {
    width: 16px;
    height: auto;
    fill: currentColor;
}

.ag-home-about__image-column {
    flex: 0 0 530px;
}

.ag-home-about__image-column img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .ag-home-about__container {
        flex-direction: column-reverse !important;
        text-align: center;
        gap: 40px;
    }

    .ag-home-about__content {
        text-align: center;
    }

    .ag-home-about__title-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ag-home-about__line {
        margin-top: 15px;
    }

    .ag-home-about__image-column {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .ag-home-about__image-column img {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .ag-home-about__btn {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .ag-home-about {
        padding: 50px 0;
    }

    .ag-home-about__container {
        gap: 30px;
        padding: 0 20px;
    }

    .ag-home-about__title {
        font-size: 32px;
    }

    .ag-home-about__description {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .ag-home-about__btn {
        font-size: 18px;
    }

    .ag-home-about__icon-box {
        width: 40px;
        height: 40px;
    }

    .ag-home-about__icon-box svg {
        width: 20px;
    }
}