.main-content.overlay {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 2rem 1rem;
	gap: 1.5rem;
	flex-direction: row;
	background: #F5F5F5;
}
.card {
	background: white;
	border-radius: 10px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.08);
	flex: 1 1 300px;
	max-width: 350px;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.card h2 {
	font-size: 1.2rem;
	margin: 0;
	color: #2070BC;
}
.card-logo {
	height: 2rem;
	margin-bottom: 0.5rem;
}
.card-logo img {
	height: 100%;
}
.card p {
	flex-grow: 1;
	font-size: 0.95rem;
	line-height: 1.4;
}
.card a {
	display: inline-block;
	text-decoration: none;
	background: #2070BC;
	color: white;
	padding: 0.6rem 1rem;
	border-radius: 5px;
	font-weight: bold;
	transition: background 0.2s ease;
}
.card a:hover {
	background: #2070BC;
}

@media (max-width: 600px) {
	header h1 {
		font-size: 1.5rem;
	}
	.card {
		max-width: 100%;
	}
}