        #cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #f1f1f1;
            padding: 15px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            display: none;
            z-index: 9999;
        }
        
        #cookie-consent p {
            margin: 0;
            padding: 0;
            color: #333;
            font-size: 14px;
        }
        
        #cookie-consent button {
            background: #4CAF50;
            color: white;
            border: none;
            padding: 8px 15px;
            margin-left: 10px;
            cursor: pointer;
            border-radius: 4px;
        }
        
        #cookie-consent button:hover {
            background: #45a049;
        }
        
        .cookie-container {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
        }