@media print {
    /* General Print Styles */
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    /* Hide non-essential elements */
    .header-cta,
    .footer,
    .social-icons,
    .btn {
        display: none !important;
    }
    
    /* Ensure images print well */
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    /* Layout adjustments */
    .bucket-content,
    .overview-cards,
    .bucket-features,
    .footer-content {
        display: block !important;
    }
    
    .overview-card,
    .bucket-text,
    .bucket-image,
    .feature {
        width: 100% !important;
        margin-bottom: 20pt;
        page-break-inside: avoid;
    }
    
    /* Page breaks */
    .proposal-bucket,
    .proposal-overview,
    .cta-section {
        page-break-before: always;
    }
    
    /* Typography */
    h1 {
        font-size: 24pt;
    }
    
    h2 {
        font-size: 20pt;
    }
    
    h3 {
        font-size: 16pt;
    }
    
    h4 {
        font-size: 14pt;
    }
    
    p {
        font-size: 12pt;
    }
    
    /* Replace buttons with text for CTA section */
    .cta-buttons::after {
        content: "For approval, please contact Cali BBQ Media at info@calibbqmedia.com";
        display: block;
        margin-top: 10pt;
        font-weight: bold;
    }
    
    /* Add URLs after links */
    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        font-style: italic;
    }
    
    /* Don't add URLs for navigation links */
    a[href^="#"]::after {
        content: "";
    }
}
