.sectors-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.sector-item {
	flex: 1 1 calc(25% - 20px); /* 4 items per row minus gap approximation */
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
	min-width: 200px; /* Prevent too narrow items on small screens */
}

.sector-image {
	width: 100%;
	margin-bottom: 15px;
	overflow: hidden;
}

.sector-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.sector-item:hover .sector-image img {
	transform: scale(1.05);
}

.sector-title {
	font-weight: 600;
	margin-top: 10px;
}

/* Tablet */
@media (max-width: 1024px) {
	.sector-item {
		flex: 1 1 calc(50% - 20px); /* 2 items per row */
	}
}

/* Mobile */
@media (max-width: 767px) {
	.sector-item {
		flex: 1 1 100%; /* 1 item per row */
	}
}
