/* Add custom CSS styles below */ 
.s-block--features__item {
  display: flex;
  flex-direction: column;
  align-items: center;        /* يوسّط الأيقونة والعنوان والنص */
  text-align: center;         /* النصوص كلها في المنتصف */
  justify-content: flex-start;
}

.s-block--features__item .feature-icon {
  flex: 1;                    /* ياخد المساحة المتاحة بحيث يساوي بين كل البوكسات */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* يخلي العنوان والفقرة فوق */
  align-items: center;
  text-align: center;
}

.s-block--features__item h2 {
  margin-bottom: 8px;         /* مسافة ثابتة بين العنوان والفقرة */
  min-height: 30px;           /* يخلي كل العناوين في نفس المستوى */
}

.s-block--features__item p {
  min-height: 50px;           /* يخلي كل الفقرات بمحاذاة واحدة */
  line-height: 1.6;           /* تحسين قراءة النص */
  margin: 0;
}

@media (min-width: 768px) {
    .md\:px-12 {
        padding-left: 3rem; 
        padding-right: 0rem; 
    }
}