/* Стилі для QR-генератора */
.qr-code-section {
    background-color: #f5f7ff;
    padding: 80px 0;
}

.qr-generator-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.settings-panel,
.preview-panel {
    flex: 1;
    min-width: 550px;
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.preview-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Решта стилів... */
