body, h1, h2, h3, p, span {
    font-family: 'IBM Plex Sans Arabic', sans-serif !important;
}

.mk-about-wrapper {
    padding: 100px 20px 60px;
    max-width: 1280px;
    margin: 0 auto;
    background-color: #fff;
}

/* ===== Title Section ===== */
.mk-about-title {
    width: 100%;
    text-align: right;
    margin-bottom: 10px;
}

.mk-about-title h2 {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: #1f7a63;
    font-size: 26px;
    font-weight: 700;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.mk-about-title img {
    height: 40px;
    width: auto;
    opacity: 0.9;
}

/* ===== Layout ===== */
.mk-about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

/* ===== Text Section ===== */
.mk-about-text {
    flex: 1 1 60%;
    color: #222;
    font-size: 17px;
    line-height: 2;
    text-align: justify;
}

.mk-about-text strong {
    color: #1e5631;
}

/* ===== Logo Section ===== */
.mk-aboutpage-logo {
    flex: 1 1 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mk-aboutpage-logo img {
    width: 260px;
    height: auto;
}

/* =====================================================
   🔹 DESKTOP: hide right decorative image
   ===================================================== */
@media (min-width: 993px) {
    .mk-about-title img:last-child {
        display: none;
    }
}

/* ===== MOBILE - max-width: 992px ===== */
@media (max-width: 992px) {
    /* Container */
    .mk-about-container {
        flex-direction: column !important;
        text-align: center;
        align-items: center;
    }

    /* Title - CENTERED */
    .mk-about-title {
        text-align: center !important;
        width: 100%;
        margin-bottom: 20px;
        order: 1;
    }

    .mk-about-title h2 {
        justify-content: center !important;
        gap: 8px;
        font-size: 40px;
    }

    .mk-about-title img {
        height: 50px;
    }

    /* Show both images in mobile */
    .mk-about-title img:last-child {
        display: inline-flex !important;
    }

    /* Logo */
    .mk-aboutpage-logo {
        width: 100%;
        order: 2;
    }

    .mk-aboutpage-logo img {
        width: 180px;
        margin: 10px 0;
    }

    /* Text */
    .mk-about-text {
        width: 100%;
        font-size: 15px;
        line-height: 1.8;
        text-align: center;
        order: 3;
    }
}