
    @font-face {
  font-family: 'Cairo';
  src: url('./font/Cairo-VariableFont_slnt,wght.ttf') format('truetype');
  font-weight: 200 1000;
  font-style: normal;
}
    body {
         font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 30px 12px;
    background: #e5e7eb;
    color: #1f2937;
    line-height: 2;
    }

    .card {
      max-width: 950px;
      margin: auto;
      background: #ffffff;
      padding: 35px 28px;
      border-radius: 18px;
      box-shadow: 0 10px 35px rgba(0,0,0,0.08);
      border: 1px solid #eef0f4;
      background-image: linear-gradient(135deg, #ffffff 0%, #f9fafb 40%, #ffffff 100%);
    }

    h1 {
      text-align: center;
      margin-bottom: 25px;
      font-weight: 800;
      font-size: 30px;
      color: #2563eb;
    }

    h2 {
      margin-top: 25px;
      font-size: 22px;
      font-weight: 700;
      color: #1e3a8a;
    }

    p {
      font-size: 17px;
      margin-top: 10px;
    }

/* شريط التواصل */
.social-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  width: fit-content;
  margin: 10px auto; /* للتمركز */
}

/* روابط الأيقونات */
.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* حجم الأيقونات */
.social-bar img {
  width: 30px;
  height: 30px;
  transition: transform .3s ease;
}

/* حركة عند المرور */
.social-bar a:hover img {
  transform: scale(1.15);
}

/* رابط الموقع الرسمي */
.social-bar .official-link {
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  background: #2563eb;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-bar .official-link img {
  width: 22px;
  height: 22px;
}

    .footer {
      text-align: center;
      margin-top: 40px;
      font-size: 15px;
      color: #6b7280;
    }
  