#privacy-popup {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 56%;
	background: linear-gradient(45deg, #ff9a9e, #fad0c4);
	color: #000;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 8px;
	z-index: 10000;
}
#privacy-popup a {
	color: #1e90ff;
	text-decoration: none;
}
@media (max-width: 768px) {
	#privacy-popup {
		width: 90%;
	}
}