/* Add custom CSS styles below */ 
@media (max-width: 479px) {
    .s-block--features .features-container {
       grid-template-columns: repeat(1, minmax(0, 1fr));
  }

@media (max-width: 479px) {
  .feature-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    .feature-icon + div {
      align-items: center !important;
    }
  }
}

/* صناديق الدفع - خلفية بيضاء + كتابة سوداء */
.payment-method-box {
    background-color: #ffffff !important;  /* خلفية بيضاء */
    border: 1px solid #e0e0e0 !important; /* إطار رمادي فاتح */
    border-radius: 8px; /* زوايا ناعمة */
}

.payment-method-box, 
.payment-method-box * {
    color: #000000 !important; /* نص أسود */
}

/* عند تمرير الماوس */
.payment-method-box:hover {
    background-color: #f5f5f5 !important; /* رمادي فاتح */
    color: #000000 !important; /* نص يبقى أسود */
}