/* INFO CARDS */
.highlight-text {
	color: #001367;
	font-weight: 800;
	font-size: 1.2em;
}

.info-section {
	padding: 60px 0;
	border-radius: var(--border-radius);
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.info-card {
	background: var(--white);
	padding: 40px 30px;
	border-radius: var(--border-radius);
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.info-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-hover);
}

.icon-wrapper {
	width: 80px;
	height: 80px;
	background: rgba(0, 19, 103, 0.05);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: #001367;
}

.icon-wrapper img {
	width: 40px;
	height: 40px;
}

.info-card h3 {
	font-size: 1.4rem;
	margin-bottom: 15px;
	color: var(--text-color);
}

.info-card p {
	color: #666;
	line-height: 1.7;
}

.info-card .btn-primary {
	margin-top: 20px;
}

@media (max-width: 768px) {
	.info-grid {
		grid-template-columns: 1fr !important;
	}
}
