
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #ffffff;
            font-family: 'Open Sans', sans-serif;
            padding: 40px 20px;
        }

        .carousel-module {
            max-width: 1280px;
            margin: 40px auto;
            background-color: #f9fafb;
            border-radius: 24px;
            padding: 48px 40px;
            box-sizing: border-box;
        }

        .section-title {
            font-family: 'Open Sans', sans-serif;
            font-weight: 700;
            font-size: 35px;
            color: #222222;
            text-align: center;
            margin-bottom: 32px;
        }

        /* ★ إصلاح رئيسي: فرض الاتجاه من اليسار لليمين داخل الكاروسيل لتجنب تعارض RTL */
        .carousel-outer {
            position: relative;
            width: 100%;
            margin: 0 auto 48px;
            direction: ltr;                /* ★ يضمن عمل التمرير بشكل صحيح بغض النظر عن اتجاه الصفحة */
        }

        .carousel-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.4s ease-in-out;
            gap: 24px;
        }

        .carousel-card {
            flex: 0 0 calc(33.333% - 16px);
            background: #ffffff;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            padding: 20px;
            text-align: center;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            text-decoration: none;
            color: inherit;
            box-sizing: border-box;
            /* مع إعادة ضبط الاتجاه داخل البطاقة للحفاظ على النصوص العربية من اليمين */
            direction: rtl;
        }

        .carousel-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .carousel-img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 16px;
        }

        .carousel-card h3 {
            font-weight: 700;
            font-size: 20px;
            color: #0047AB;
            margin-bottom: 8px;
        }

        .carousel-card p {
            font-size: 14px;
            line-height: 1.5;
            color: #555555;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #ffffff;
            border: 1px solid #cbd5e1;
            border-radius: 40px;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.2s;
            color: #0047AB;
            font-size: 28px;
            font-weight: 600;
        }
        .carousel-btn:hover {
            background: #f8fafc;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        /* ★ تعديل مواقع الأزرار لتعمل مع الاتجاه LTR المُجبر */
        .btn-left {
            left: -22px;
            right: auto;                 /* إزالة التعيين السابق الذي كان يضعها على اليمين */
        }
        .btn-right {
            right: -22px;
            left: auto;                  /* إزالة التعيين السابق */
        }

        /* الجدول يبقى كما هو */
        .table-wrapper {
            margin-top: 20px;
        }
        .table-subtitle {
            font-family: 'Open Sans', sans-serif;
            font-weight: 700;
            font-size: 28px;
            color: #222222;
            text-align: center;
            margin-bottom: 24px;
        }
        .table-responsive {
            overflow-x: auto;
            border-radius: 16px;
            border: 2px solid #cbd5e1;
            background: #ffffff;
        }
        .app-table {
            width: 100%;
            border-collapse: collapse;
            font-family: 'Open Sans', sans-serif;
            font-size: 15px;
            color: #555555;
            min-width: 600px;
        }
        .app-table th,
        .app-table td {
            padding: 12px 16px;
            text-align: right;
            border-bottom: 1px solid #e2e8f0;
            vertical-align: top;
        }
        .app-table th {
            background-color: #f8fafc;
            font-weight: 600;
            color: #0047AB;
            border-bottom: 2px solid #cbd5e1;
        }
        .app-table tr:last-child td {
            border-bottom: none;
        }

        @media (max-width: 900px) {
            .carousel-module {
                padding: 36px 30px;
            }
            .carousel-card {
                flex: 0 0 calc(50% - 12px);
            }
            .carousel-btn {
                width: 38px;
                height: 38px;
                font-size: 24px;
            }
            .btn-left { left: -12px; right: auto; }
            .btn-right { right: -12px; left: auto; }
        }

        @media (max-width: 640px) {
            .carousel-module {
                padding: 36px 24px;
            }
            .carousel-card {
                flex: 0 0 100%;
            }
            .carousel-img {
                height: 140px;
            }
            .carousel-btn {
                width: 32px;
                height: 32px;
                font-size: 20px;
            }
            .btn-left { left: -8px; right: auto; }
            .btn-right { right: -8px; left: auto; }
            .table-subtitle {
                font-size: 24px;
            }
            .app-table,
            .app-table thead,
            .app-table tbody,
            .app-table tr,
            .app-table td {
                display: block;
                width: 100%;
            }
            .app-table thead {
                display: none;
            }
            .app-table tr {
                margin-bottom: 20px;
                border: 2px solid #cbd5e1;
                border-radius: 16px;
                overflow: hidden;
                background: #ffffff;
            }
            .app-table td {
                display: block;
                padding: 10px 16px;
                border-bottom: 1px solid #e2e8f0;
                word-break: break-word;
                white-space: normal;
                text-align: right;
            }
            .app-table td:last-child {
                border-bottom: none;
            }
            .app-table td::before {
                content: attr(data-label);
                display: block;
                font-weight: 600;
                color: #0047AB;
                margin-bottom: 6px;
                font-size: 13px;
                text-align: right;
            }
        }
    