.navbar-brand { font-weight: 900; letter-spacing: -0.5px; }

/* --- STYLE MỚI CHO PHẦN THÔNG SỐ KỸ THUẬT --- */
.tech-spec-container {
    background-color: #f8f9fa; /* Nền xám nhẹ tổng thể */
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #e9ecef;
}

.spec-card {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px; /* Khoảng cách giữa icon và chữ */
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border: 1px solid #fff;
    transition: all 0.3s ease;
    height: 100%;
}

.spec-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #ee4d2d; /* Viền đỏ cam khi hover */
}

.spec-icon {
    font-size: 2.2rem; /* Icon to gấp đôi cũ */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-info {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 700;
    margin-bottom: 2px;
}

.spec-value {
    font-size: 1.2rem; /* Chữ to, đậm */
    font-weight: 800;
    color: #333;
    line-height: 1.2;
}