#privacy-popup { position: fixed; bottom: 0; left: 13%; width: 74%; background-color: #f9f9f9; color: #333; padding: 20px 25px; box-sizing: border-box; box-shadow: 0 0 10px rgba(0,0,0,0.1); font-family: Arial, sans-serif; font-size: 16px; line-height: 1.4; border-radius: 8px 8px 0 0; z-index: 10000; display: flex; justify-content: space-between; align-items: flex-start; } #privacy-popup a { color: #0066cc; text-decoration: none; } #privacy-popup a:hover { text-decoration: underline; } #privacy-popup .close-btn { cursor: pointer; font-size: 24px; font-weight: bold; line-height: 1; color: #999; border: none; background: transparent; padding: 0; margin-left: 20px; align-self: flex-start; } @media (max-width: 767px) { #privacy-popup { width: 90%; left: 5%; padding: 15px 18px; font-size: 14px; border-radius: 0; } #privacy-popup .close-btn { font-size: 22px; margin-left: 12px; } } @media (min-width: 768px) and (max-width: 1023px) { #privacy-popup { width: 80%; left: 10%; font-size: 15px; } }