* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	background: #f5f6f8;
	color: #333;
	line-height: 1.5;
}
.container {
	max-width: 800px;
	margin: 40px auto;
	padding: 20px;
}
.logo {
	text-align: center;
	margin-bottom: 40px;
}
.logo img {
	max-width: 600px;
	width: 100%;
	height: auto;
}
.item {
	display: flex;
	gap: 24px;
	align-items: flex-start;

	background: white;
	padding: 20px;
	margin-bottom: 20px;

	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.movement {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 60px;
}
.icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	margin-bottom: 8px;
}
.red {
	background: #e74c3c;
}
.blue {
	background: #3498db;
}
.green {
	background: #2ecc71;
}
.gold {
	background: #f1c40f;
}
.number {
	font-size: 1.2rem;
	font-weight: bold;
	color: #444;
	text-align: center;
}
.spaces {
	font-size: 12px;
	text-transform: uppercase;
}
.content {
	flex: 1;
}
.content h2 {
	margin-bottom: 10px;
	font-size: 1.25rem;
}
.content p {
	color: #666;
}
.path-section {
	margin-bottom: 50px;
}
.path-heading {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 3px solid;
	font-size: 1.75rem;
	font-weight: 700;
}
.path-heading img {
	width: 100px;
	margin-left: 10px;
}
.red-heading {
	color: #e74c3c;
	border-color: #e74c3c;
}
.blue-heading {
	color: #3498db;
	border-color: #3498db;
}
.green-heading {
	color: #2ecc71;
	border-color: #2ecc71;
}
.gold-heading {
	color: #f1c40f;
	border-color: #f1c40f;
}
/* Mobile */
@media (max-width: 600px) {
	.container {
		padding: 16px;
	}
	.item {
		flex-direction: column;
		gap: 16px;
	}
	.movement {
		flex-direction: row;
		justify-content: flex-start;
		gap: 10px;
	}
	.icon {
		margin-bottom: 0;
	}
}