@media print {
    header,
    nav,
    .accessibility-controls,
    footer,
    .social-share,
    .comments-section {
        display: none !important;
    }

    body {
        background-color: white !important;
        color: black !important;
        font-size: 12pt !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    main {
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    section {
        page-break-inside: avoid;
        margin-bottom: 2cm !important;
    }

    article {
        background-color: white !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    h1, h2, h3, h4, h5, h6 {
        color: black !important;
        page-break-after: avoid;
        margin-top: 1cm !important;
    }

    h1 {
        font-size: 24pt !important;
    }

    h2 {
        font-size: 20pt !important;
    }

    h3 {
        font-size: 16pt !important;
    }

    a {
        color: black !important;
        text-decoration: none !important;
    }

    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 90%;
        color: #666 !important;
    }

    img {
        max-width: 50% !important;
        page-break-inside: avoid;
    }

    figure {
        page-break-inside: avoid;
        margin: 1cm 0 !important;
    }

    figcaption {
        color: black !important;
        font-size: 10pt !important;
    }

    input,
    textarea,
    button {
        border: 1px solid #999 !important;
        background-color: white !important;
    }

    table {
        border-collapse: collapse !important;
        width: 100% !important;
    }

    th, td {
        border: 1px solid #999 !important;
        padding: 0.5cm !important;
    }

    ul, ol {
        margin-left: 1cm !important;
    }

    .page-break {
        page-break-before: always;
    }

    .no-print-url a[href]:after {
        content: none !important;
    }

    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    @page {
        margin: 2cm;
    }

    video {
        display: none !important;
    }
} 