@media print {
     @page {
         size: A4 portrait;
        /* Sets A4 size with landscape orientation */
         margin: 1.5cm;
        /* Sets a uniform margin of 2cm on all sides */
    }
     header, footer, #breadcrumb-visual-toggle {
         display:none;
    }
     body {
         font-size: 12pt;
    }
     img {
         page-break-inside: avoid;
        /* Avoid breaking images across pages */
    }
     #banner {
         padding: 0 1.5rem .75rem;
    }
}