@media print {

    @page {
        margin: 20mm 10mm;  /* Adjust the top and bottom margins to make space */
    }

    /* Main heading (largest) */
    h1 {
        font-size: 16pt;  /* Make h1 the largest */
    }

    /* First-level subheading */
    h2 {
        font-size: 14pt;  /* Slightly smaller than h1 */
    }

    /* Second-level subheading */
    h3 {
        font-size: 12pt;  /* Smaller than h2 */
    }

    /* Third-level subheading */
    h4 {
        font-size: 10pt;  /* Smaller than h3 */
    }

    h1, h2, h3, h4 {
        margin-top: 5mm;    /* Reduce space above headings */
        margin-bottom: 3mm; /* Reduce space below headings */
    }

    /* Adjust body text styling */
    body {

        font-size: 9pt;  /* Maintain body text font size */
        line-height: 1.15;  /* Reduce line height for tighter text */
    }

    /* Reduce vertical spacing between paragraphs */
    p {
        margin-bottom: 1mm;  /* Reduce the space between paragraphs */
    }

    /* Optionally hide page elements that are not needed for print */
    .sidebar, .navigation, .footer {
        display: none;
    }
}