/* RODO Virtual Page Styles */
body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	background-color: #f5f5f5;
}
.rodo-container {
	background: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.rodo-header {
	border-bottom: 3px solid #2680C5;
	padding-bottom: 20px;
	margin-bottom: 30px;
}
.rodo-header h1 {
	color: #2680C5;
	margin: 0;
	font-size: 28px;
}
.rodo-content {
	font-size: 16px;
	color: #333;
}
.rodo-content h2 {
	color: #2680C5;
	margin-top: 30px;
	margin-bottom: 15px;
}
.rodo-content h3 {
	color: #555;
	margin-top: 25px;
	margin-bottom: 10px;
}
.rodo-content p {
	margin-bottom: 15px;
}
.rodo-content ul,
.rodo-content ol {
	margin-bottom: 15px;
	padding-left: 30px;
}
.rodo-content li {
	margin-bottom: 8px;
}
.back-link {
	display: inline-block;
	margin-top: 30px;
	padding: 10px 20px;
	background-color: #2680C5;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s;
}
.back-link:hover {
	background-color: #1a5a8a;
	color: white;
}
@media (max-width: 768px) {
	body {
		padding: 10px;
	}
	.rodo-container {
		padding: 20px;
	}
	.rodo-header h1 {
		font-size: 24px;
	}
	.rodo-content {
		font-size: 14px;
	}
}
