    /* docs/assets/stylesheets/print_material.css */
    #print-site-cover-page {
        /* Example: Style for the cover page */
        text-align: center;
        padding-top: 50px;
    }

    .print-site-plugin-ignore {
        /* Example: Hide elements with this class in the print output */
        display: none;
    }

    @media print {
        /* Example: Print-specific styles */
        body {
            font-size: 12pt;
        }
        h1 {
            color: #333;
            page-break-before: always; /* Start new page before each H1 */
        }
    }
