#cookie-consent-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #333; color: #fff; padding: 15px 20px;
    z-index: 9999; font-family: Arial, sans-serif;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.2);
}
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; gap: 15px; align-items: center; }
.cookie-content p { margin: 0; flex: 1; }
.cookie-content button {
    padding: 8px 16px; border: none; border-radius: 4px;
    cursor: pointer; font-size: 14px; color: white;
}
#accept-cookies { background: #4CAF50; }
#reject-cookies { background: #666; }
#accept-cookies:hover, #reject-cookies:hover { opacity: 0.8; }
@media (max-width: 768px) { .cookie-content { flex-direction: column; text-align: center; } }