#privacy-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(90deg, #ff7e5f, #feb47b);
	color: #fff;
	padding: 15px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}
#privacy-modal .close {
	position: absolute;
	top: 5px;
	right: 10px;
	font-size: 20px;
	cursor: pointer;
}
@media (max-width: 768px) {
	#privacy-modal {
		flex-direction: column;
		padding: 10px;
	}
}