.who-can-invest {
	background-color: var(--color-bg-light);
	padding: var(--page-paddingYB) var(--page-padding);
}
.who-can-invest__header {
	margin-bottom: 48px;
}
.who-can-invest__header h3 {
	margin-bottom: 16px;
}
.who-can-invest__flex {
	display: flex;
	gap: 32px;
}
.who-can-invest__card {
	flex: 1;
	text-align: center;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}
.who-can-invest__icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-bg-light);
	border-radius: var(--radius-medium);
}
.who-can-invest__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.who-can-invest__card h5 {
	margin-bottom: 16px;
	font-size: var(--text-size-large);
	font-weight: 600;
	color: var(--color-charcoal);
}
.who-can-invest__card p {
	font-size: var(--text-size-small);
	color: var(--color-text-light);
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 991px) {
	.who-can-invest__flex {
		display: flex;
		flex-direction: column;
	}
}
