.about-section {
    padding: 20px 0;
 
}
.container-about {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.about-content-wrapper {
    display: flex;
    flex-direction: row; /* مهم لجعل الصور بجانب المحتوى */
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    padding: 20px;
    margin: auto;
    flex-wrap: wrap; /* يضمن استجابة التصميم عند الشاشات الصغيرة */
}
.about-content-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.about-content {
    flex: 1;
    width: 60%; /* اجعلها أكبر قليلاً للمحتوى */
}
.about-images {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}
.about-images img{
    width: 100%; /* تأخذ عرض الحاوية */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.about-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.features {
    margin: 10px 0;
}
.feature {
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.ulfeatures  {
    list-style-type: none; 
    padding: 5px; 
    margin: 5px; 
    font-size: 18px;
}


/* تحسين التصميم للشاشات الصغيرة */
@media (max-width: 768px) {
    .about-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-images {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-images img {
        width: 45%;
    }


}

@media (max-width: 480px) {

    .about-content {
        flex: 1;
        width: 98%; /* اجعلها أكبر قليلاً للمحتوى */
    }
    .about-images {
        width: 95%;}
    .about-images img {
        width: 90%;
    }
    .feature {
        font-size: 14px;
    }
}