/* Print Styles */
@media print {
    /* Hide elements not needed for print */
    header, 
    footer, 
    .cta-section, 
    .cta-buttons,
    .hamburger,
    .social-icons {
        display: none !important;
    }
    
    /* Reset background colors and shadows */
    body, section, .product-card, .benefit-item, .testimonial {
        background-color: #fff !important;
        color: #000 !important;
        box-shadow: none !important;
    }
    
    /* Ensure text is readable */
    p, li, h1, h2, h3, h4, h5, h6 {
        color: #000 !important;
    }
    
    /* Adjust layout for print */
    .container {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Make sure images fit on page */
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    /* Add page breaks where appropriate */
    section {
        page-break-inside: avoid;
        margin-bottom: 1cm;
    }
    
    /* Show URLs for links */
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }
    
    /* Remove padding/margin for print */
    * {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Add spacing between elements */
    p, h1, h2, h3, h4, h5, h6, ul, ol {
        margin-bottom: 0.5cm !important;
    }
}
