.cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #000000cc; /* Полупрозрачный черный фон */
            color: #fff;
            padding: 15px 20px;
            box-sizing: border-box;
            text-align: center;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .cookie-banner.show {
            opacity: 1;
        }
        .cookie-banner p {
            margin: 0;
            font-size: 14px;
            flex: 1;
            text-align: left;
        }
        .cookie-banner button {
            background-color: #ff9800;
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            margin-top: 10px;
            flex-shrink: 0;
        }
        .cookie-banner button:hover {
            background-color: #e68a00;
        }
* {
    background-size: cover;
    background-position: center center;
}
