/* ========================================== */
/* General */
/* ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Amazon Ember", Arial, sans-serif;
}

body {
  font-family: 'Cairo', Arial, sans-serif;
  background: #fafafa;
  /* direction: rtl; تمت إزالتها */
  line-height: 1.8;
  color: #333;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================== */
/* Policy Banner - موحد مع باقي الموقع */
/* ========================================== */

.policy-banner {
  width: 100%;
  height: 415px;
  /* ارتفاع ثابت مطابق للهيرو */
  min-height: 415px;
  max-height: 415px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.policy-banner a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 0;
  /* إلغاء الحواف المدورة */
  transition: none;
  /* إلغاء التأثيرات الزائدة */
}

.policy-banner img {
  width: 100%;
  height: 100%;

  /* ملء كامل للمساحة (مط) حسب الطلب السابق */
  object-fit: fill;

  display: block;
  transition: transform 0.5s ease;
}

.policy-banner a:hover img {
  transform: scale(1.02);
}

/* ========================================== */
/* Policy Header - أبيض وكتابة سوداء */
/* ========================================== */

.policy-header {
  background: #ffffff;
  /* خلفية بيضاء */
  padding: 40px 0;
  text-align: center;
  color: #1a1a1a;
  /* كتابة سوداء */
  border-bottom: 1px solid #eee;
  /* خط فاصل خفيف */
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
  /* ظل خفيف جداً */
  margin-bottom: 30px;
}

.policy-header h1 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.header-date {
  font-size: 14px;
  color: #666;
  /* لون رمادي للتاريخ */
  font-weight: 500;
}

/* ========================================== */
/* Policy Content */
/* ========================================== */

.policy-content {
  padding: 20px 0 70px;
}

/* ========================================== */
/* Policy Sections */
/* ========================================== */

.policy-section {
  background: #fff;
  border-radius: 8px;
  padding: 30px 35px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.policy-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: #b42f4c;
  margin-bottom: 18px;
}

.intro-text {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

/* ========================================== */
/* Lists */
/* ========================================== */

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-section ul li {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.policy-section ul li i {
  color: #22c55e;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ========================================== */
/* Responsive */
/* ========================================== */

@media (max-width: 992px) {
  .policy-banner {
    height: 350px;
    min-height: 350px;
    max-height: 350px;
  }

  .policy-header h1 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .policy-header {
    padding: 30px 0;
  }

  .policy-header h1 {
    font-size: 28px;
  }

  .policy-section {
    padding: 25px 20px;
  }

  .policy-section h2 {
    font-size: 20px;
  }

  .intro-text,
  .policy-section ul li {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .policy-banner {
    height: 250px;
    min-height: 250px;
    max-height: 250px;
  }

  .policy-header h1 {
    font-size: 24px;
  }

  .policy-section {
    padding: 20px 18px;
  }
}