#policy-box-bar { position: fixed; bottom: 0; left: 0; width: 100%; background-color: #f9f9f9; color: #333; padding: 20px; box-sizing: border-box; display: flex; justify-content: space-between; align-items: center; z-index: 1000; } #policy-box-bar .buttons { display: flex; gap: 10px; } #policy-box-bar button { background-color: #007bff; color: #fff; border: none; padding: 10px 20px; cursor: pointer; } #policy-box-bar button:hover { background-color: #0056b3; } @media(min-width: 768px) { #policy-box-bar { flex-direction: row; justify-content: space between; max-width: 720px; margin: auto; } }