@media print {

    nav,
    footer,
    .fixed,
    .cookie-consent-banner,
    #newsletter-popup {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .print\:hidden {
        display: none !important;
    }

    main {
        padding: 0 !important;
        margin: 0 !important;
    }

    .shadow-sm,
    .shadow-md,
    .shadow-lg,
    .shadow-xl {
        box-shadow: none !important;
    }

    .border,
    .border-slate-100,
    .border-slate-200 {
        border: none !important;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}