.qr-codes {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.qr-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.qr-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.qr-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}

.qr-item p {
    color: #fefefe;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}