.af-container {
	font-family: 'Roboto', sans-serif;
	padding: 60px 0;
	text-align: center;
	background-color: #F8F9FA;
}

.af-statement {
	font-size: 1.5rem;
	font-weight: 500;
	max-width: 800px;
	margin: 0 auto 50px;
	line-height: 1.5;
	color: #333;
}

.af-image-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.af-image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 8px;
}

@media (max-width: 768px) {
	.af-image-grid {
		grid-template-columns: 1fr;
	}
	.af-statement {
		font-size: 1.2rem;
	}
}
