.container {
	display: flex;
	max-width: 1200px;
	padding-top: 20px;
}

.left-columm {
	width: 13%;
	padding: 0 30px;
	border-right: 1px solid #e0e0e0;
	display: flex;
	flex-direction: column;
	align-items: center;
        background-color: #f6f6f6;
}

.right-column {
	flex: 1;
	padding-left: 30px;
}

.header {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 25px;
	color: #333;
	padding-bottom: 8px;
	text-align: center;
	width: 100%;
}

.category {
	font-size: 16px;
	font-weight: normal;
	margin: 18px 0;
	color: #333;
	padding-left: 0;
	border-left: none;
	text-align: center;
	width: 100%;
}

.team {
	background-color: transparent;
	border-radius: 0;
	padding: 0;
	margin-bottom: 25px;
	box-shadow: none;
	/*border-bottom: 1px solid #e0e0e0;*/
	padding-bottom: 15px;
}

.team-name {
	font-weight: bold;
	margin-bottom: 12px;
	color: #1a5fb4;
	font-size: 16px;
	padding-bottom: 5px;
	/*border-bottom: 1px solid #e0e0e0;*/
}

.members {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 25px;
        padding-left: 30px;
}

.member {
	font-size: 14px;
	color: #333;
}