/* Add custom CSS styles below */ 
/* تقليل الفراغات الرأسية بين الأقسام */
section {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

/* تخصيص أكثر بناءً على بعض الثيمات */
.section,
.s-section,
.section-wrapper {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}
.s-payments-list img {
  width: 1050px;  /* غيّر الرقم حسب الحجم المطلوب */
  height: 1000px; /* يحافظ على التناسب */
}
/* تأكد أن هذا الكود داخل إعدادات "أكواد CSS مخصصة" في سلة */

footer {
  background-color: #f9f9f9;
  padding: 40px 20px;
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
  color: #333;
}

/* تقسيم الأعمدة */
.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* عنوان القسم */
.footer-wrapper h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #000;
}

/* تنسيق الروابط */
.footer-wrapper a {
  display: block;
  color: #333;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 15px;
}

.footer-wrapper a:hover {
  color: #b78e52;
  text-decoration: underline;
}

/* فقرة نصية أو وصف */
.footer-wrapper p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* الحقوق */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  margin-top: 40px;
}