  .cookie-consent {
        display: none;
        font-size: 14px;
        border-radius: 16px;
        min-height: 90px;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translate(-50%, 100%);
        background: #fff;
        color: #222;
        padding: 1rem;
        width: 95%;
        max-width: 1200px;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.4);
        z-index: 9999;
        opacity: 0;
        transition: transform 0.5s ease, opacity 0.5s ease;

    }

    .cookie-consent.show {
        transform: translate(-50%, 0%);
        opacity: 1;
    }

    .btn-consent {
        margin-left: 10px;
        color: white;
        border: none;
        padding: 5px 10px;
        font-weight: bold;
    }

    @media only screen and (max-width: 768px) {
        .cookie-consent {
            width: 100% !important;
            border-radius: 0;
            left: 0;
            transform: translateY(100%);
        }

        .cookie-consent.show {
            transform: translateY(0);
        }
    }