#privacy-popup { position: fixed; bottom: 0; left: 0; width: 100%; background-color: #222; color: #eee; padding: 15px 20px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; font-family: Arial, sans-serif; font-size: 14px; z-index: 10000; } #privacy-popup p { margin: 0; line-height: 1.4; max-width: 800px; } #privacy-popup a { color: #4ea1f3; text-decoration: none; } #privacy-popup a:hover { text-decoration: underline; } #privacy-popup .close-btn { position: absolute; top: 10px; right: 15px; color: #eee; font-size: 18px; font-weight: bold; background: transparent; border: none; cursor: pointer; line-height: 1; padding: 0; } @media (max-width: 768px) { #privacy-popup { padding: 12px 15px; font-size: 13px; } } @media (max-width: 480px) { #privacy-popup p { font-size: 12px; max-width: 100%; } }