#privacy-popup {
	position: fixed;
	bottom: 10px;
	right: 10px;
	background-color: #f9f9f9;
	color: #000;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	border: 1px solid #ccc;
	box-sizing: border-box;
	max-width: 300px;
}
#privacy-popup a {
	color: #0073e6;
	text-decoration: none;
}
#privacy-popup button {
	background-color: #4caf50;
	color: #fff;
	border: none;
	padding: 10px 15px;
	margin-top: 10px;
	cursor: pointer;
}
@media (max-width: 767px) {
	#privacy-popup {
		width: 90%;
		max-width: none;
		right: 5%;
		left: 5%;
		bottom: 5px;
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	#privacy-popup {
		width: 70%;
	}
}