
    /* CSS Root Variables for MENA Market Branding */
    :root {
        --sh-navy: #0f172a;    /* Deep Authority Blue */
        --sh-gold: #b48c36;    /* Premium Desert Gold */
        --sh-bg-slate: #f8fafc;
        --sh-border: #e2e8f0;
        --sh-text: #1e293b;
    }

    .sh-article-body {
        font-family: Arial, sans-serif;
        line-height: 1.75;
        color: var(--sh-text);
        max-width: 1920px;
        margin: 0 auto;
        padding: 40px 20px;
        background: #ffffff;
        text-align: left; /* 严格遵循左对齐审美 */
    }

    /* --- Header & Side Box (Flex Layout) --- */
    .sh-header-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 40px;
        border-bottom: 2px solid var(--sh-border);
        padding-bottom: 40px;
    }

    h2.sh-main-title {
        flex: 2;
        font-size: 2.3rem;
        color: #000000;
        margin: 0;
        line-height: 1.2;
        text-align: left;
    }

    .sh-target-audience {
        flex: 1;
        background: var(--sh-bg-slate);
        border: 1px solid var(--sh-gold);
        padding: 20px;
        border-radius: 4px;
        font-size: 0.85rem;
    }

    .sh-target-audience b {
        display: block;
        color: var(--sh-gold);
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .sh-target-audience ul { margin: 0; padding: 0; list-style: none; }
    .sh-target-audience li { margin-bottom: 5px; position: relative; padding-left: 15px; }
    .sh-target-audience li::before { content: "•"; position: absolute; left: 0; color: var(--sh-gold); }

    /* --- Refined Event Strip --- */
    .sh-info-strip {
        background: var(--sh-navy);
        color: #ffffff;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        padding: 15px 25px;
        border-radius: 4px;
        margin-bottom: 40px;
    }

    .sh-strip-item { font-size: 0.9rem; letter-spacing: 0.5px; }
    .sh-strip-item b { color: var(--sh-gold); text-transform: uppercase; margin-right: 5px; }

    /* --- Content Structure --- */
    h2 {
        font-size: 1.8rem;
        color: #000;
        margin-top: 60px;
        margin-bottom: 25px;
        border-bottom: 1px solid var(--sh-border);
        padding-bottom: 10px;
        text-align: left;
    }

    h3 { font-size: 1.4rem; color: var(--sh-navy); margin-top: 40px; text-align: left; }

    p, li { margin-bottom: 20px; text-align: left; }

    /* --- Image Placeholders --- */
    .sh-img-placeholder {
        margin: 40px 0;
        text-align: center;
        background: #f1f5f9;
        border: 1px solid #e2e8f0;
        padding: 10px;
        border-radius: 4px;
    }

    .sh-img-placeholder img { max-width: 100%; height: auto; display: block; margin: 0 auto; }
    .sh-caption { display: block; font-size: 0.85rem; color: #64748b; margin-top: 12px; font-style: italic; }

    /* --- Product Modular Cards --- */
    .sh-product-card {
        border: 1px solid var(--sh-border);
        padding: 30px;
        margin-bottom: 30px;
        background: #ffffff;
        border-radius: 8px;
        border-left: 5px solid var(--sh-gold);
    }

    .sh-product-card h3 { margin-top: 0; border: none; padding: 0; color: var(--sh-navy); }

    /* --- FAQ Area --- */
    .sh-faq-wrap {
        margin-top: 80px;
        background: #f1f5f9;
        padding: 50px 40px;
        border-radius: 8px;
    }

    .sh-faq-q { font-weight: bold; font-size: 1.15rem; color: #000; display: block; margin-bottom: 10px; }
    .sh-faq-a { margin-bottom: 35px; border-bottom: 1px solid #e2e8f0; padding-bottom: 20px; }

    /* --- Author & Footer --- */
    .sh-author-footer {
        margin-top: 80px;
        padding: 40px;
        background: var(--sh-navy);
        color: #ffffff;
        border-radius: 4px;
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .sh-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--sh-gold); color: white; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.5rem; }
    .sh-author-info p { margin: 4px 0; font-size: 0.9rem; color: #cbd5e1; }
    .sh-author-info b { color: #fff; font-size: 1.1rem; display: block; margin-bottom: 5px; }

    /* --- CTA Buttons --- */
    .sh-cta-buttons { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 40px; }
    .sh-btn {
        background: var(--sh-navy);
        color: white;
        padding: 18px 45px;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: bold;
        border-radius: 50px;
        transition: 0.3s;
    }
    .sh-btn:hover { background: #000; transform: translateY(-2px); }
    .sh-btn-gold { background: var(--sh-gold); }

    @media (max-width: 850px) {
        .sh-header-row { flex-direction: column; }
        .sh-author-footer { flex-direction: column; text-align: center; }
        .sh-cta-buttons { flex-direction: column; }
    }
