
    /* --- H-Lift Industrial Theme Variables --- */
    :root {
        --primary-color: #003366; /* Deep Navy Blue */
        --accent-color: #f39c12;  /* Safety Orange */
        --bg-light: #f4f7f6;
        --border-color: #e0e0e0;
        --text-dark: #333333;
        --text-light: #555555;
    }

    body {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
        margin: 0;
        padding: 20px;
        background-color: #ffffff;
        font-size: 16px; /* Standardized 16px font */
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* --- Page Header --- */
    .page-header {
        border-bottom: 4px solid var(--primary-color);
        padding-bottom: 20px;
        margin-bottom: 40px;
        text-align: center;
    }

    .page-header h1 {
        color: var(--primary-color);
        font-size: 32px;
        margin: 0 0 10px 0;
        font-family: 'Cambria', serif;
    }

    .sub-header {
        color: var(--text-light);
        font-weight: 600;
        font-size: 18px;
    }

    /* --- Intro Text --- */
    .intro-text {
        margin-bottom: 40px;
        text-align: left;
    }

    /* --- Product Category Grid --- */
    .section-title {
        color: var(--primary-color);
        font-size: 24px;
        border-left: 5px solid var(--accent-color);
        padding-left: 15px;
        margin-top: 40px;
        margin-bottom: 20px;
        font-family: 'Cambria', serif;
    }

    .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .category-card {
        background: #fff;
        border: 1px solid var(--border-color);
        padding: 20px;
        border-radius: 6px;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .category-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-color: var(--primary-color);
    }

    .cat-title {
        font-weight: bold;
        color: var(--primary-color);
        font-size: 18px;
        margin-bottom: 10px;
        display: block;
    }

    .cat-desc {
        color: var(--text-light);
        font-size: 15px;
    }

    /* --- Advantages Grid --- */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .feature-card {
        background: var(--bg-light);
        padding: 20px;
        border-radius: 6px;
        border-top: 3px solid var(--accent-color);
    }

    .feature-header {
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 10px;
        display: block;
        font-size: 17px;
    }

    /* --- Applications List --- */
    .app-list {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 15px;
    }

    .app-list li {
        background: #fff;
        border: 1px solid var(--border-color);
        padding: 12px 15px;
        border-left: 4px solid var(--primary-color);
        font-weight: 500;
    }

    /* --- Why Choose Us Box --- */
    .why-box {
        background-color: #003366;
        color: #ffffff;
        padding: 30px;
        border-radius: 8px;
        margin-top: 40px;
    }

    .why-box h3 {
        color: var(--accent-color);
        margin-top: 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .why-text {
        color: #e0e0e0;
    }

    /* --- Image Styling --- */
    .image-container {
        margin-top: 40px;
        text-align: center;
        border: 1px solid var(--border-color);
        padding: 10px;
        border-radius: 8px;
    }

    .image-container img {
        max-width: 100%;
        height: auto;
        display: block;
    }

