.modal-overlay{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}
.modal-box{
	background-color: #000000;
	padding: 5px;
	border-radius: 8px;
	width: 90%;
	max-width: 450px;
	position:relative;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	text-align: center;
	font-family: sans-serif;
}
.close-btn{

	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 28px;
	font-weight: bold;
	color: #aaa;
	cursor: pointer;
}
.close-btn:hover{
	color: #333;
}
.cta-btn{
	background-color: #007bff;
	color: white;
	border: none;
	padding: 10ox 20px;
	border-radius: 4px;
	cursor: pointer;
	margin-top: 15px;
}
