
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #ffffff;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            padding: 20px;
            z-index: 9999;
            transform: translateY(100%);
            transition: transform 0.3s ease-in-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cookie-icon {
            font-size: 32px;
            flex-shrink: 0;
        }

        .cookie-text {
            flex: 1;
            min-width: 250px;
        }

        .cookie-text h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: #333;
        }

        .cookie-text p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        .cookie-text a {
            color: #2563eb;
            text-decoration: none;
        }

        .cookie-text a:hover {
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
