
    /* --- H-LIFT MODERN INDUSTRIAL THEME --- */
    :root {
        --brand-primary: #1A365D; /* Deep Slate Blue */
        --brand-accent: #FF6B00;  /* Vibrant Safety Orange */
        --text-main: #2D3748;
        --text-muted: #718096;
        --bg-page: #F7FAFC;
        --bg-card: #FFFFFF;
        --border-color: #E2E8F0;
        --danger-red: #E53E3E;
        --danger-bg: #FFF5F5;
        --warning-yellow: #D69E2E;
        --warning-bg: #FFFFF0;
        --info-blue: #3182CE;
        --info-bg: #EBF8FF;
        --radius-md: 10px;
        --radius-lg: 16px;
        --shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
        --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    }

    /* Global Typography */
    * { box-sizing: border-box; }
    body {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        font-size: 16px;
        color: var(--text-main);
        line-height: 1.6;
        margin: 0;
        padding: 20px;
        background-color: var(--bg-page);
    }

    .article-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    /* --- 1. HERO SECTION --- */
    .hero-section {
        background: var(--bg-card);
        padding: 40px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        margin-bottom: 40px;
        border-top: 5px solid var(--brand-primary);
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
        color: var(--brand-primary);
        margin: 0 0 15px 0;
        font-weight: 800;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 18px;
        color: var(--text-muted);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .tags-wrapper {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 25px;
    }

    .tag {
        background: #EDF2F7;
        color: var(--brand-primary);
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 700;
        border: 1px solid var(--border-color);
    }

    .tag.tag-highlight {
        background: var(--brand-accent);
        color: #fff;
        border-color: var(--brand-accent);
    }

    .hero-desc {
        color: var(--text-main);
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
    }

    /* --- 2. SECTION HEADINGS --- */
    .section-heading {
        font-size: 24px;
        color: var(--brand-primary);
        margin-top: 0;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .section-heading::before {
        content: "";
        width: 6px;
        height: 24px;
        background: var(--brand-accent);
        border-radius: 4px;
    }

    /* --- 3. FEATURE CARDS (Components) --- */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
    }

    .feature-card {
        background: var(--bg-card);
        padding: 30px 25px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-color);
        border-top: 4px solid var(--brand-primary);
        transition: transform 0.2s;
    }
    
    .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

    .feature-icon {
        font-size: 28px;
        margin-bottom: 15px;
        display: block;
    }

    .feature-title {
        font-size: 18px;
        color: var(--brand-primary);
        margin: 0 0 10px 0;
        font-weight: 700;
    }

    .feature-card p {
        margin: 0;
        color: var(--text-main);
        font-size: 15px;
    }

    /* --- 4. LIST BLOCKS (Physics & Danger) --- */
    .split-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    @media (max-width: 800px) {
        .split-container { grid-template-columns: 1fr; }
    }

    .list-block {
        background: var(--bg-card);
        padding: 30px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-color);
        height: 100%;
    }

    .list-block.warning { border-top: 4px solid var(--warning-yellow); }
    .list-block.danger { border-top: 4px solid var(--danger-red); }

    .list-block h3 {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .list-block.warning h3 { color: #975A16; }
    .list-block.danger h3 { color: var(--danger-red); }

    .rule-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px dashed var(--border-color);
    }

    .rule-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .rule-item p { margin: 0; color: var(--text-main); }
    .rule-item strong { color: var(--brand-primary); }

    /* --- 5. DATA TABLES (Centered) --- */
    .table-container {
        overflow-x: auto;
        margin-bottom: 40px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-color);
    }

    table {
        width: 100%;
        border-collapse: collapse;
        background: var(--bg-card);
    }

    table, th, td {
        text-align: center !important;
    }

    th, td {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    th {
        background-color: var(--brand-primary);
        color: #FFFFFF;
        font-weight: 700;
        white-space: nowrap;
    }

    td:first-child {
        font-weight: 700;
        color: var(--brand-primary);
        background-color: #F7FAFC;
    }

    tr:last-child td {
        border-bottom: none;
    }

    tr:hover td {
        background-color: #F8FAFC;
    }

    /* Warning rows in tables */
    tr.table-danger td {
        background-color: var(--danger-bg);
        color: var(--danger-red);
        font-weight: 700;
    }

    /* --- 6. INSTRUCTIONAL IMAGES --- */
    .image-row {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .image-row img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-sm);
        flex: 1 1 300px;
        object-fit: cover;
    }

    /* --- 7. FAQ SECTION --- */
    .faq-container {
        background: var(--info-bg);
        padding: 30px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
        border: 1px solid #BEE3F8;
        border-left: 6px solid var(--info-blue);
        margin-bottom: 40px;
    }

    .faq-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #BEE3F8;
    }

    .faq-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .faq-q {
        font-size: 18px;
        color: var(--info-blue);
        font-weight: 800;
        margin: 0 0 10px 0;
        display: flex;
        gap: 10px;
    }

    .faq-a {
        margin: 0;
        color: var(--text-main);
        padding-left: 32px;
    }

