.trustpilot-container {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	/* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	max-width: 300px;
	/* Adjust as needed */
	width: 100%;
	box-sizing: border-box;
}

.trustpilot-header {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.2em;
	font-weight: 600;
	color: #333;
}

.star-rating {
	display: flex;
	gap: 2px;
}

.star {
	width: 20px;
	/* Adjust star size */
	height: 20px;
	background-color: #00b67a;
	/* Green for filled stars */
	clip-path: polygon(50% 0%,
			61% 35%,
			98% 35%,
			68% 57%,
			79% 91%,
			50% 70%,
			21% 91%,
			32% 57%,
			2% 35%,
			39% 35%);
}

.trustpilot-reviews {
    position: relative;
    font-size: .8em;
	color: #555;
	display: flex;
	align-items: center;
	gap: 5px;
}

.trustpilot-logo {
    position: static;
    margin-right: 20px;
    margin-bottom: 10px;
    width: 10px;
    height: 10px;
	background-repeat: no-repeat;
	background-size: contain;
    background-position: center;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
	.trustpilot-container {
		padding: 15px;
	}

	.trustpilot-header {
		font-size: 1.1em;
	}

	.star {
		width: 18px;
		height: 18px;
	}

	.trustpilot-reviews {
		font-size: 0.9em;
	}

	.trustpilot-logo {
		width: 20px;
		height: 20px;
	}
}
