/* Technical Specs styles */
.specs-grid {
    display: grid;
}
.spec-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
    align-items: center;
}
.spec-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 7px 5px 15px rgba(0, 0, 0, 0.3);
    padding: 1.5rem !important;
}
.spec-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spec-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.spec-content {
    flex-grow: 1;
}
