/* Print Styles */
@media print {
    /* Hide elements that shouldn't be printed */
    header, 
    footer, 
    .mobile-menu-btn, 
    .language-switcher,
    .agreement-actions,
    .agreement-signature {
        display: none !important;
    }
    
    /* Ensure proper page margins */
    @page {
        margin: 1cm;
    }
    
    /* Improve readability for print */
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    /* Agreement specific styles */
    .agreement-container {
        margin: 0;
        padding: 0;
        box-shadow: none;
    }
    
    .agreement-header {
        text-align: center;
        margin-bottom: 2cm;
    }
    
    .agreement-content {
        font-size: 11pt;
        line-height: 1.5;
    }
    
    .agreement-text h3 {
        font-size: 14pt;
        text-align: center;
        margin-bottom: 1cm;
        border-bottom: 1px solid #000;
        padding-bottom: 0.5cm;
    }
    
    .agreement-text h4 {
        font-size: 12pt;
        margin-top: 0.8cm;
        margin-bottom: 0.4cm;
    }
    
    .agreement-text ul {
        margin-left: 1cm;
    }
    
    .signature-block {
        margin-top: 2cm;
        width: 50%;
        float: left;
    }
    
    .signature-line {
        border-bottom: 1px solid #000;
        margin-bottom: 0.5cm;
        height: 1cm;
    }
    
    /* Ensure no page breaks inside important elements */
    .agreement-text {
        page-break-inside: avoid;
    }
    
    /* Add page breaks where needed */
    .agreement-header {
        page-break-before: always;
    }
    
    /* Remove background colors and images */
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    /* Improve link display */
    a:after {
        content: " (" attr(href) ")";
        font-size: 90%;
    }
    
    /* Don't show links for JavaScript or internal links */
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }
}