@media print {
    /* Hide unnecessary elements */
    .site-header,
    .site-footer,
    .back-to-top,
    .btn,
    .cta-section {
        display: none !important;
    }
    
    /* Print-friendly styles */
    body {
        background: white;
        color: black;
        font-size: 12pt;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
    
    /* Ensure content fits */
    .container {
        max-width: 100%;
        padding: 0;
    }
}