/* ... (previous code) ... */

/* Print Optimization */
@media print {
    body {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        background-color: var(--bg-dark) !important;
        color: #000 !important;
        /* Force text to black if needed, or keep white if background prints */
    }

    /* Ensure backgrounds render */
    .hero,
    .service-card,
    .app-box,
    .join-form,
    .admin-header,
    .stat-card,
    .data-table-container {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    /* Hide interactive elements not needed in PDF */
    .mobile-toggle,
    .hero-btns,
    .btn,
    .store-btn,
    .action-btn {
        display: none !important;
    }

    /* Adjust Hero height for A4 */
    .hero {
        height: 500px !important;
        min-height: auto !important;
    }
}