
    .uee-specs-container {
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .uee-specs-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .uee-specs-header h2 {
        font-size: 28px;
        color: #222;
        font-weight: bold;
        text-transform: uppercase;
        margin: 0 0 10px 0;
        letter-spacing: 1px;
    }
    .uee-specs-header p {
        font-size: 14px;
        color: #777;
        margin: 0;
    }
    .uee-specs-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .uee-spec-card {
        background: #ffffff;
        border: 1px solid #eaeaea;
        border-radius: 4px;
        flex: 1 1 calc(33.333% - 20px);
        min-width: 300px;
        padding: 30px 25px;
        box-sizing: border-box;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .uee-spec-card:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.06);
        border-color: #d4d4d4;
        transform: translateY(-3px);
    }
    /* Card Top Decorative Line */
    .uee-spec-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: #2c3e50; 
        transform: scaleX(0);
        transition: transform 0.3s ease;
        transform-origin: left;
    }
    .uee-spec-card:hover::before {
        transform: scaleX(1);
    }
    .uee-spec-title {
        font-size: 18px;
        font-weight: 700;
        color: #111;
        margin: 0 0 20px 0;
        padding-bottom: 12px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        align-items: center;
        text-transform: uppercase;
    }
    .uee-spec-title span {
        display: inline-block;
        margin-right: 12px;
        font-size: 20px;
        color: #555;
    }
    .uee-spec-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .uee-spec-list li {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
    }
    .uee-spec-list li:last-child {
        margin-bottom: 0;
    }
    /* Custom List Bullet */
    .uee-spec-list li::before {
        content: '\25A0';
        color: #ccc;
        font-size: 10px;
        margin-right: 10px;
        margin-top: 3px;
    }
    .uee-hl {
        color: #222;
        font-weight: 600;
        display: inline-block;
        min-width: 110px; 
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .uee-specs-grid {
            flex-direction: column;
        }
        .uee-spec-card {
            flex: 1 1 100%;
        }
    }
