.cookie-consent-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	color: #0C2964;
	padding: 20px;
	z-index: 99999;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-consent-content {
	max-width: 1200px;
	margin: 0 auto;
}

.cookie-consent-text h3 {
	margin-top: 0;
	color: #0C2964;
}

.cookie-consent-text p {
	margin: 10px 0;
	line-height: 1.6;
}

.cookie-consent-text a {
	color: #4a9eff;
	text-decoration: underline;
}

.cookie-consent-buttons {
	margin-top: 20px;
	text-align: center;
}

.cookie-btn {
	padding: 12px 30px;
	margin: 0 10px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	transition: all 0.3s;
}

.cookie-btn.accept {
	background: #E42C2C;
	color: white;
}

.cookie-btn.accept:hover {
	background: #0C2964;
}

.cookie-btn.reject {
	background: #E42C2C;
	color: white;
}

.cookie-btn.reject:hover {
	background: #0C2964;
}