    *{font-family: 'El Messiri';}
    body {
        background-color: #fcfcfc;
        color: #333;
    }
    .custom-container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 15px;
    }
    .main-title h1 {
        font-size: 2rem;
        color: #1a1a1a;
        margin: 20px;
        font-weight: 700;
        position: relative;
    }
    /* شبكة الكروت الاحترافية */
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 35px;
    }
    .oil-card {
        background: #eaeaea;
        border-radius: 12px;
        border: 1px solid #eef0f2;
        box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .oil-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    }
    /* الرقم التسلسلي في زاوية الكرت */
    .card-badge {
        position: absolute;
        top: 0;
        left: 0;
        background: #1a1a1a;
        color: #ffcc00;
        font-size: 12px;
        font-weight: bold;
        padding: 4px 12px;
        border-bottom-right-radius: 12px;
    }
    .dit {
        font-weight: bold; color: blue;
    }
    .card-title {
        font-size: 18px;
        font-weight: 700;
        color: #1a1a1a;
        margin-top: 10px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    .card-info {
        background: #f9f9f9;
        border-radius: 8px;
        padding: 10px 12px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .info-label {
        font-size: 11px;
        color: #888;
        font-weight: 600;
    }
    .info-value {
        font-size: 15px;
        color: #e61919;
        font-weight: 700;
    }
    /* زر الواتساب المطور */
    .btn-whatsapp-share {
        align-items: center;
        background-color: #25D366;
        color: #fff !important;
        padding: 10px 20px;
        border-radius: 30px;
        text-decoration: none !important;
        font-weight: bold;
        font-size: 14px;
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
        transition: transform 0.2s, box-shadow 0.2s;
        margin-bottom: 30px;
    }
    .btn-whatsapp-share:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
    }
    /* الجدول الحديث والمتجاوب */
    .table-container {
        width: 100%;
        overflow-x: auto;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        margin-bottom: 35px;
        border: 1px solid #eef0f2;
    }
    .responsive-table {
        width: 100%;
        border-collapse: collapse;
        text-align: right;
        min-width: 600px;
    }
    .responsive-table th {
        background-color: #1a1a1a;
        color: #ffcc00;
        padding: 15px;
        font-weight: 600;
        font-size: 15px;
    }
    .responsive-table td {
        padding: 14px 15px;
        border-bottom: 1px solid #f1f1f1;
        font-size: 14.5px;
        color: #444;
    }
    .responsive-table tr:last-child td {
        border-bottom: none;
    }
    .responsive-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }
    .text-center-col {
        text-align: center;
        width: 50px;
    }
    /* قسم الصور الاحترافي */
    .oil-gallery {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-bottom: 40px;
    }
    .oil-gallery img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    }
    /* تحسين قسم المحتوى والمقالات */
    .content-seo-box {
        background: #fff;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.04);
        margin-top: 40px;
        border: 1px solid #f0f0f0;
        line-height: 1.8;
    }
    .content-seo-box h2 {
        color: #1a1a1a;
        font-size: 1.6rem;
        margin-bottom: 15px;
        border-right: 4px solid #ffcc00;
        padding-right: 10px;
    }
    .content-seo-box h3 {
        color: #333;
        font-size: 1.25rem;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .content-seo-box p {
        color: #555;
        font-size: 15px;
        text-align: justify;
    }
    /* مدخلات الفورم */
    .qa-form-block input, .qa-form-block textarea {
        transition: border-color 0.2s;
    }
    .qa-form-block input:focus, .qa-form-block textarea:focus {
        border-color: #ffcc00 !important;
        outline: none;
    }