        /* Card styles */
        .category-card {
            background-color: #f6f6f6; /* لون الخلفية */
            color: #333; /* لون النص */
            padding: 40px; /* حجم البطاقة */
            border-radius: 20px; /* الانحناء */
            box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* الظل */
            transition: transform 0.3s, box-shadow 0.3s; /* تأثير التحريك */
        }

        /* Hover effect */
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        /* المسافة بين العنوان والهيدر */
        .category-main-title {
            margin-top: 80px;
            margin-bottom: 20px;
        }

        /* حجم العنوان الرئيسي */
        .category-main-title h1 {
            font-size: 26px;
            font-weight: 600;
        }

        /* subtitle للصفحة الرئيسية */
        .category-main-subtitle {
            font-size: 18px;
            color: #666;
            margin-top: 8px;
        }
