A naive way to combine PDFs would be to render every page to an image and paste those images into a new document, the same approach a screenshot-and-reassemble tool would take. That approach quietly throws away selectable text, shrinks image resolution to whatever the render happened to use, and bloats the file. This tool doesn't do that.
Instead, each page in a PDF is its own object in the file, referencing its own content stream, fonts and images. Combining files means copying those page objects directly into a new document's object graph and appending them in the order you chose, the same operation a desktop PDF editor performs internally. Nothing is decoded to pixels and re-encoded, so text stays selectable, fonts stay embedded, and images keep their exact original resolution and compression.
If you only need to trim, split or rebuild a document from scratch rather than combine already-complete files, pair this with PDF to Images to pull specific pages out first, then Images to PDF to rebuild exactly the pages you want before merging them in. And if the result of a merge is larger than you'd like, Compress PDF Images can shrink the embedded photos afterward without touching text or layout.