/* Add custom CSS styles below */ 
/* تخصيص خلفية عامة */
body {
  background-color: #fffaf0;
  font-family: 'Cairo', sans-serif;
}

/* الحاوية العامة للقوائم */
.category-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}

/* تصميم كل بطاقة (قسم) */
.category-box {
  background-color: #000;
  color: #D4AF37;
  border: 2px solid #D4AF37;
  padding: 20px 30px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  width: 200px;
}

.category-box:hover {
  background-color: #D4AF37;
  color: #000;
  transform: scale(1.05);
}