graph TD;
A[Generate Return Label]:::business-action --> B{Return Method}:::decision;
B --> C[Send Return Instructions]:::business-action;
B --> D[Include Return Label in Shipment]:::business-action;
C --> E[Customer Initiates Return]:::customer-action;
D --> F[Customer Receives Package]:::customer-action;
E --> G[Customer Ships Package Back]:::customer-action;
F --> G;
G --> H[Track Return Package]:::business-action;
H --> I[Process Return]:::business-action;
classDef customer-action fill:#f0f8ff,stroke:#333,stroke-width:2px;
classDef business-action fill:#f5f5f5,stroke:#333,stroke-width:2px;
classDef decision fill:#ffffe0,stroke:#333,stroke-width:2px;
click A "/docs/labels/create-return-label.html" "Go to Generate Return Label Guide"
click C "/docs/returns/send-return-instructions.html" "Go to Send Return Instructions Guide"
click H "/docs/tracking/track-package.html" "Go to Track Return Package Guide"