/* Trust Badges Section */
.trust-badges-section {
	width: 100%;
	padding: 30px 20px;
	background: #ffffff;
	border-bottom: 1px solid #e5e5e5;
}

.trust-badges-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 30px;
}

.trust-badge-item {
	display: flex;
	align-items: center;
	gap: 14px;
}

.trust-badge-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #111;
	flex-shrink: 0;
}

.trust-badge-text {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: #111;
	text-transform: uppercase;
	white-space: nowrap;
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 768px) {
	.trust-badges-container {
		justify-content: center;
		gap: 25px 40px;
	}
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 576px) {

	.trust-badges-section {
		padding: 25px 15px;
	}

	.trust-badges-container {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.trust-badge-icon {
		width: 32px;
		height: 32px;
		font-size: 20px;
	}

	.trust-badge-text {
		font-size: 12px;
	}
}