.search-section {
	display: flex;
	justify-content: center;
	padding: 20px;
}

header .search-section {
	padding: 0;
}

@media (max-width: 1200px) {
	header .search-input {
		font-size: 14px;
	}
}



.search-container {
	width: 100%;
	max-width: 700px;
	padding: 0 15px;
}

.search-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

header .search-form {
	flex-direction: row;
}

@media (min-width: 576px) {
	.search-form {
		flex-direction: row;
	}
}

@media (max-width: 992px) {
	header .search-section {
		width: 100%;
		margin-top: 24px;
	}
}

	


.search-input {
	flex: 1;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 4px;
	outline: none;
	transition: border-color 0.3s ease;
}

header .search-input {
	padding: 5px;
}



.search-button {
	padding: 10px 20px;
	font-size: 16px;
	border: none;
	background-color: rgb(var(--main-green));
	color: white;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

header .search-button {
	font-size: 14px;
	padding: 5px 10px;
}



.search-button:hover {
	background-color: rgba(var(--main-green), 0.8);
	color: rgba(255, 255, 255, 0.7);
}