@media print {
    /* Hide non-printable elements */
    .main-nav,
    .cookie-notice,
    .cta-button,
    .legal-links,
    button {
        display: none !important;
    }

    /* Adjust layout for printing */
    body {
        margin: 0;
        padding: 2cm;
        font-size: 12pt;
        line-height: 1.3;
    }

    /* Ensure dark text on white background */
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }

    /* Handle links */
    a {
        text-decoration: underline;
    }

    a[href^="http"]:after {
        content: " (" attr(href) ")";
    }

    /* Page breaks */
    h1, h2, h3 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }

    img {
        page-break-inside: avoid;
        max-width: 100% !important;
    }

    .feature-card,
    .card {
        page-break-inside: avoid;
    }
} 