.story {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.section .left,  .section  .right {
    flex: 1;
    display: flex;
    flex-direction: column; /* تغيير الاتجاه ليكون عمودي */
    align-items: center;
    text-align: center; /* لضبط محاذاة النصوص */
}

.circular-image {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    object-fit: cover;
    margin: 10px 0; /* إضافة مسافة بين الصورة والفقرات */
}

h2 {
    margin: 0 0 10px 0; /* مسافة بين العنوان والفقرة */
}

p {
    margin: 10px 0 0 0; /* مسافة بين الفقرة والعناصر الأخرى */
}

@media (max-width: 768px) {
    .section {
        flex-direction: column; /* تغيير الاتجاه ليكون عمودي في الشاشات الصغيرة */
    }
}