#privacy-consent {
	position: fixed;
	bottom: 0;
	left: 14%;
	width: 72%;
	background-color: #2c2c2c;
	color: #ffffff;
	padding: 20px;
	box-sizing: border-box;
	display: none;
	z-index: 10001;
	border-radius: 8px 8px 0 0;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}
#privacy-consent p {
	margin: 0 0 15px 0;
	font-size: 14px;
	line-height: 1.4;
}
#privacy-consent a {
	color: #4a9eff;
	text-decoration: underline;
}
#privacy-consent a:hover {
	color: #6bb6ff;
}
.consent-buttons {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}
.consent-buttons button {
	background-color: #4a9eff;
	color: #ffffff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.3s;
}
.consent-buttons button:hover {
	background-color: #3d8ce6;
}
.consent-buttons button:last-child {
	background-color: #666666;
}
.consent-buttons button:last-child:hover {
	background-color: #555555;
}
@media (max-width: 768px) {
	#privacy-consent {
		left: 2%;
		width: 96%;
		padding: 15px;
	}
	.consent-buttons {
		flex-direction: column;
	}
	.consent-buttons button {
		width: 100%;
	}
}