﻿    .privacy-notice-modal {
        background: rgba(5, 38, 117, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: #fff;
        padding: 2rem 1rem 1rem 1rem;
        position: fixed;
        z-index: 9999;
        display: flex;
        left: 0;
        right: 0;
        bottom: 0;
        align-items: center;
        justify-content: center;
        transform: translateY(100%);
        opacity: 0;
        transition: all 0.5s ease-in-out;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    }

    .privacy-notice-modal.show {
        transform: translateY(0);
        opacity: 1;
    }

    .privacy-notice-modal .pnm-container {
        display: flex;
        flex-direction: column;
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

        .privacy-notice-modal .pnm-container p {
            font-size: 15px;
            margin: 0 0 0.8rem 0;
            line-height: 1.5;
            color: #fff;
            text-wrap: balance;
        }

        .privacy-notice-modal .pnm-container a {
            color: #14b6fc;
            text-decoration: none;
        }

            .privacy-notice-modal .pnm-container a:hover {
                text-decoration: underline;
            }

    .privacy-notice-modal .pnm-button {
        background-color: #052675;
        border: 1px solid #fff;
        color: #fff;
        padding: 12px 30px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: bold;
        margin-top: 15px;
        align-self: center;
        text-transform: uppercase;
    }

        .privacy-notice-modal .pnm-button:hover {
            background-color: #fff;
            color: #052675;
        }

@media (max-width: 768px) {
    .privacy-notice-modal .pnm-container p {
        font-size: 14px;
    }
}
