.privacy-link {
	text-align: center;
	margin-top: 20px;
	color: #666;
}

.privacy-link a {
	color: #4b6cb7;
	text-decoration: none;
	cursor: pointer;
	font-weight: 500;
}

.privacy-link a:hover {
	text-decoration: underline;
}

.dialog-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.dialog-box {
	background: white;
	border-radius: 10px;
	width: 90%;
	max-width: 600px;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.dialog-header {
	background: #4b6cb7;
	color: white;
	padding: 20px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.dialog-header h2 {
	font-size: 22px;
}

.close-btn {
	background: none;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.dialog-content {
	padding: 25px;
	line-height: 1.6;
	color: #444;
}

.dialog-content h3 {
	margin: 20px 0 10px 0;
	color: #4b6cb7;
}

.dialog-content p {
	margin-bottom: 15px;
}

.dialog-content ul {
	margin-bottom: 15px;
	padding-left: 20px;
}