 
    body {    
      font-family: Arial, sans-serif;    
      margin: 0;    
      padding: 0;    
      text-align: center;    
      background: linear-gradient(to bottom right, #ffecb3, #f1b708, #ff7300); 
      min-height: 100vh;    
    }    
    
    .container {    
      max-width: 800px;    
      margin: 50px auto;    
      background-color: rgba(231, 75, 13, 0.9);    
      padding: 40px 20px;    
      border-radius: 15px;    
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);    
    }    
    
    h1 {    
      color: #181616;    
      margin-bottom: 5px;    
    }    
    
    p {    
      color: #0a0a0a;    
      margin-top: 0;    
      font-size: 16px;    
    }    
    
    .cards {    
      display: flex;    
      justify-content: center;    
      gap: 20px;    
      margin-top: 30px;    
      flex-wrap: wrap;    
    }    
    
    .card {    
      background-color: white;    
      padding: 20px;    
      width: 180px;    
      border-radius: 12px;    
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);    
      transition: transform 0.3s ease, box-shadow 0.3s ease;    
    }    
    
    .card:hover {    
      transform: translateY(-5px);    
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* تعزيز التأثير عند التمرير */
    }    
    
    .card img {    
      width: 48px;    
      height: 48px;    
    }    
    
    .card h3 {    
      margin: 10px 0 5px;    
      color: #e65100;    
    }    
    
    .card p {    
      margin: 0;    
      color: #777;    
      font-size: 14px;    
    } 
   .bouton-retour {
  position: fixed;      /* يبقى ثابت في الشاشة */
  top: 20px;            /* المسافة من الأعلى */
  left: 20px;           /* المسافة من اليسار */
  background-color: #c2185b; /* لون الخلفية */
  color: white;         /* لون النص */
  padding: 10px 18px;   /* حجم داخلي */
  border-radius: 50px;  /* الزوايا دائرية */
  font-weight: bold;    
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* ظل */
  z-index: 999;         /* يبقى فوق جميع العناصر */
  transition: background-color 0.3s ease;
}

.bouton-retour:hover {
  background-color: #880e4f;
}
/* ✅ السهم ديال الرجوع */
    .back-arrow {
      position: fixed;
      top: 20px;
      right: 20px;
      background-color: #ff9800;
      color: white;
      font-size: 28px;
      padding: 12px 16px;
      border-radius: 50%;
      text-decoration: none;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .back-arrow:hover {
      background-color: #e65100;
      transform: scale(1.1);
    }
  
