.privacy-consent {
	position: fixed;
	bottom: 18px;
	left: 18px;
	right: 18px;
	width: calc(100% - 36px);
	max-width: 500px;
	background: #2d2d2d;
	color: #fff;
	padding: 16px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	z-index: 99999;
	display: none;
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
}
.privacy-consent p {
	margin: 0 0 12px 0;
	padding: 0;
}
.privacy-consent a {
	color: #4CAF50;
	text-decoration: underline;
}
.privacy-consent a:hover {
	color: #66BB6A;
}
.privacy-consent .cookie-buttons {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
}
.privacy-consent button {
	background: #4CAF50;
	color: white;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
	transition: background 0.2s;
}
.privacy-consent button:hover {
	background: #45a049;
}
.privacy-consent button.decline {
	background: #666;
}
.privacy-consent button.decline:hover {
	background: #555;
}
@media (max-width: 480px) {
	.privacy-consent {
		bottom: 10px;
		left: 10px;
		right: 10px;
		width: calc(100% - 20px);
		padding: 14px;
	}
	.privacy-consent .cookie-buttons {
		flex-direction: column;
	}
	.privacy-consent button {
		padding: 10px;
	}
}