
    .uee-oem-container {
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 15px;
        box-sizing: border-box;
        color: #333;
        line-height: 1.6;
    }

    .uee-oem-intro {
        text-align: center;
        max-width: 900px;
        margin: 0 auto 50px;
    }

    .uee-oem-intro h2 {
        font-size: 32px;
        color: #222;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .uee-oem-intro p {
        font-size: 15px;
        color: #555;
        margin-bottom: 15px;
        text-align: left;
    }

    /* Timeline Style for Process */
    .uee-service-section {
        margin-bottom: 60px;
        background: #fff;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        border: 1px solid #f0f0f0;
    }

    .uee-service-title {
        font-size: 24px;
        color: #111;
        font-weight: 700;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 2px solid #2c3e50;
        display: inline-block;
        text-transform: uppercase;
    }

    .uee-timeline {
        position: relative;
        padding-left: 30px;
    }

    .uee-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 11px;
        width: 2px;
        background: #eaeaea;
    }

    .uee-timeline-item {
        position: relative;
        margin-bottom: 25px;
    }

    .uee-timeline-item:last-child {
        margin-bottom: 0;
    }

    .uee-timeline-number {
        position: absolute;
        left: -30px;
        top: 2px;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #2c3e50;
        color: #fff;
        font-size: 12px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .uee-timeline-content {
        padding-left: 15px;
    }

    .uee-timeline-content h4 {
        margin: 0 0 5px 0;
        font-size: 16px;
        color: #222;
    }

    .uee-timeline-content p {
        margin: 0;
        font-size: 14px;
        color: #666;
    }

    /* Grid for side-by-side services */
    .uee-services-grid {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }

    .uee-service-column {
        flex: 1 1 calc(50% - 15px);
        min-width: 300px;
    }

    @media (max-width: 768px) {
        .uee-service-section {
            padding: 25px 15px;
        }
        .uee-services-grid {
            flex-direction: column;
        }
    }
