@media print {

    /* Hide Navigation, Footer, and Ads */
    header,
    nav,
    footer,
    #mobileMenu,
    .no-print,
    .ad-unit,
    iframe {
        display: none !important;
    }

    /* Reset Backgrounds and Colors for Ink Saving */
    body {
        background: white !important;
        color: black !important;
        font-family: serif;
        /* Better for reading */
    }

    /* Layout Resets */
    .page-shell,
    .container,
    .tool-card {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }

    /* Ensure Text Visibility */
    h1,
    h2,
    h3,
    h4,
    p,
    span,
    li,
    td {
        color: black !important;
        text-shadow: none !important;
    }

    /* Links */
    a {
        text-decoration: none !important;
        color: black !important;
    }

    /* Tool Specific Optimizations */
    .input-field {
        border: 1px solid #ccc !important;
    }

    /* Force Page Breaks */
    .page-break {
        page-break-before: always;
    }

    /* Hide decorative images but keep content images */
    .hero-pattern,
    .float-animation {
        background: none !important;
    }
}