	.growers-container {
	max-width: 800px;
	margin: 0 auto;
	font-family: Arial, sans-serif;
	text-align: center;
}

.growers-header {
	background-color: rgb(216, 196, 174);
	padding: 20px;
	margin-bottom: 30px;
}

.growers-title {
	font-size: 32px;
	color: #000;
	margin: 0;
}

.growers-description {
	line-height: 1.6;
	margin: 20px 0;
}

.growers-highlight {
	color: rgb(139, 69, 19);
	font-weight: bold;
}

.growers-update {
	color: rgb(165, 42, 42);
	margin: 30px 0;
}

.growers-results {
	margin: 20px 0;
}

.growers-first {
	color: green;
}

.growers-second {
	color: rgb(0, 100, 0);
}

.growers-third {
	color: rgb(34, 139, 34);
}

.growers-congrats {
	color: rgb(184, 134, 11);
	font-weight: bold;
	margin-top: 20px;
}

.makers-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding: 20px;
}

.makers-item {
	text-align: center;
	width: 200px;
	margin-bottom: 30px;
}

.makers-logo {
	width: 150px;
	height: 150px;
	object-fit: contain;
	margin-bottom: 10px;
}

.makers-title {
	font-weight: bold;
	margin-bottom: 5px;
}

.makers-description {
	font-size: 0.9em;
	margin-bottom: 5px;
	line-height: 1.2;
}

.makers-website {
	color: #666;
	text-decoration: none;
	font-size: 0.8em;
	display: block;
	margin-bottom: 5px;
}

.makers-social {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.makers-social img {
	width: 20px;
	height: 20px;
}

.medalion img {
	width: 500px; 
	height:auto;
}

@media (max-width: 768px) {
	.makers-item {
		width: 45%;
	}
	.medalion img {
		width: 250px; 
		height:auto;
	}
}

@media (max-width: 480px) {
	.makers-item {
		width: 100%;
	}
}
/* Hover effect for social media icons */
.makers-social img {
    transition: transform 0.3s ease;
}

.makers-social img:hover {
    transform: scale(1.2);
}

.makers-item {
    text-align: center;
    width: 200px;
    margin-bottom: 30px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;  /* Added */
}

.makers-item:hover {
    transform: scale(1.05);
}