        #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: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            z-index: 99999;
        }
        
        #cookie-consent p {
            margin: 0;
            font-size: 14px;
			font: 14px/18px 'Roboto', sans-serif;
            color: #333;
        }
        
        #cookie-consent a {
            color: #0066cc;
            text-decoration: underline;
        }
        
        #cookie-consent button {
            background: #0066cc;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            margin-left: 15px;
            white-space: nowrap;
            margin: 10px;
        }
        
        #cookie-consent button:hover {
            background: #0055aa;
        }
        
        @media (max-width: 768px) {
            #cookie-consent {
                flex-direction: column;
                text-align: center;
            }
            
            #cookie-consent button {
                margin: 10px 0 0 0;
            }
        }