/* PDF specific styles - these will be applied when generating PDF */
@media print {
    /* Hide download button when printing */
    .bpg-download-section {
        display: none !important;
    }
    
    /* Ensure all content stays visible */
    .bpg-section {
        page-break-after: always;
    }
    
    .bpg-section:last-child {
        page-break-after: avoid;
    }
    
    /* Prevent elements from being cut across pages */
    .bpg-item,
    .bpg-stat-item,
    .bpg-contact-item,
    .bpg-mission,
    .bpg-vision,
    .bpg-toc-content,
    .bpg-about-content {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    /* Ensure background colors and images print */
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    
    /* Cover page - full page */
    .bpg-cover {
        height: 100vh;
        page-break-after: always;
    }
    
    /* Ensure images are not cut */
    .bpg-section-image img,
    .bpg-item-image img,
    .bpg-cover-logo img {
        max-width: 100%;
        height: auto;
    }
}

/* Crispdf specific adjustments */
.bpg-profile {
    background: #fff;
    max-width: 100%;
    margin: 0 auto;
}

/* Ensure all sections have proper spacing */
.bpg-section {
    padding: 40px;
    min-height: 400px;
}