.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #f8f9fa; padding: 15px; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 1000; display: flex; flex-direction: column; align-items: center; text-align: center; } .cookie-banner p { margin: 0 0 10px 0; font-size: 14px; color: #333; } .cookie-banner a { color: #0066cc; text-decoration: underline; } .cookie-banner .buttons { display: flex; gap: 10px; } .cookie-banner button { padding: 8px 15px; border: none; border-radius: 4px; cursor: pointer; font-size: 14px; } .cookie-banner button:first-child { background: #0066cc; color: white; } .cookie-banner button:last-child { background: #e9ecef; color: #333; } @media (min-width: 768px) { .cookie-banner { flex-direction: row; justify-content: center; text-align: left; } .cookie-banner p { margin: 0 20px 0 0; } }