#privacy-consent {
	position: fixed;
	bottom: 0;
	left: 18.5%;
	width: 63%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
	padding: 20px;
	box-sizing: border-box;
	z-index: 10001;
	display: none;
	border-radius: 12px 12px 0 0;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
	font-family: Arial, sans-serif;
}
#privacy-consent p {
	margin: 0 0 15px 0;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
}
#privacy-consent a {
	color: #ffeb3b;
	text-decoration: underline;
	font-weight: bold;
}
#privacy-consent a:hover {
	color: #fff59d;
}
.consent-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}
.consent-buttons button {
	background: rgba(255,255,255,0.2);
	color: #ffffff;
	border: 2px solid rgba(255,255,255,0.3);
	padding: 8px 20px;
	border-radius: 25px;
	cursor: pointer;
	font-size: 13px;
	font-weight: bold;
	transition: all 0.3s ease;
	min-width: 80px;
}
.consent-buttons button:hover {
	background: rgba(255,255,255,0.3);
	border-color: rgba(255,255,255,0.5);
	transform: translateY(-2px);
}
.consent-buttons button:first-child {
	background: rgba(76,175,80,0.8);
	border-color: #4caf50;
}
.consent-buttons button:first-child:hover {
	background: rgba(76,175,80,1);
}
@media (max-width: 768px) {
	#privacy-consent {
		left: 5%;
		width: 90%;
		padding: 15px;
	}
	#privacy-consent p {
		font-size: 13px;
	}
	.consent-buttons {
		gap: 10px;
	}
	.consent-buttons button {
		padding: 6px 16px;
		font-size: 12px;
		min-width: 70px;
	}
}
@media (max-width: 480px) {
	#privacy-consent {
		left: 2%;
		width: 96%;
		padding: 12px;
	}
	.consent-buttons {
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}
	.consent-buttons button {
		width: 100%;
		max-width: 200px;
	}
}