.print {
    display: none;
}

@media print {
    .print {
        display: block !important;
    }

    @page {
        margin-top: 25mm !important;
    }

    .screen {
        display: none !important;
    }

    body {
        margin: 0;
        font-family: arial, sans-serif !important;
    }

    section {
        position: relative;
        page-break-inside: avoid;
        page-break-before: auto;
        page-break-after: auto;
    }
}