/* فاصل بين section hero و section ceo-words */
.separator-section {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.separator-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/* للشاشات الكبيرة */
@media (min-width: 1200px) {
    .separator-image {
        width: 100%;
        height: auto;
    }
}

/* للشاشات المتوسطة */
@media (max-width: 1199px) and (min-width: 768px) {
    .separator-image {
        width: 100%;
        height: auto;
    }
}

/* للشاشات الصغيرة */
@media (max-width: 767px) {
    .separator-image {
        width: 100%;
        height: auto;
    }
}