#privacy-modal {
	position: fixed;
	bottom: 0;
	left: 5.5%;
	width: 89%;
	background-color: #f9f9f9;
	color: #333;
	padding: 15px;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-radius: 5px;
	z-index: 9999;
	font-family: Arial, sans-serif;
}
#privacy-modal .close-btn {
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 18px;
	cursor: pointer;
}
@media (max-width: 768px) {
	#privacy-modal {
		width: 95%;
		left: 2.5%;
	}
}