body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 10px;
	background-color: #f4f4f9;
	color: #333;
}
.container {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.column {
	flex: 1;
	min-width: 300px;
	background-color: #fff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.section-title {
	text-align: left;
	font-size: 1.5em;
	color: #0056b3;
	border-bottom: 2px solid #0056b3;
	padding-bottom: 2px;
	margin-top: 0;
}
.subsection-title {
	text-align: center;
	font-size: 1.2em;
	color: #555;
	margin-top: 10px;
	margin-bottom: 8px;
}
.link-list {
	list-style-type: none;
	padding: 0;
}
.link-list li {
	margin-bottom: 1px;
}
.link-list a {
	text-decoration: none;
	color: #007bff;
	transition: color 0.2s;
}
.link-list a:hover {
	color: #0056b3;
	text-decoration: underline;
}