*{
	box-sizing: border-box;
}

body{
	margin: 0;
	font-family: Arial;
}

#header{
	background: #2e7d32;
	color: white;
}

#top-content{
	width: 80%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	line-height: 40px;
}

#top a{
	color: white;
	text-decoration: none;
}

#banner{
	background: white;
	color: black;
}

#banner-content{
	width: 80%;
	margin: auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 10px;
}

#banner img{
	width: 120px;
}

.info{
	font-size: 14px;
}

#menu{
	background: #2e7d32;
}

#menu-content{
	width: 80%;
	margin: auto;
	display: flex;
}

#menu a{
	color: white;
	padding: 15px 20px;
	text-decoration: none;
}

#menu a:hover{
	background: orange;
}

#container{
	width: 80%;
	margin: 20px auto;
}

#category{
	width: 25%;
	float: left;
	border: 1px solid #ccc;
	border-radius: 10px;
}

#category h1{
	background: #2e7d32;
	color: white;
	text-align: center;
	padding: 10px;
	margin: 0;
}

#category ul{
	list-style: none;
	padding: 0;
}

#category li{
	border-bottom: 1px solid #ccc;
}

#category a{
	display: block;
	padding: 10px;
	text-decoration: none;
	color: black;
}

#category a:hover{
	background: orange;
	color: white;
}

#slide{
	width: 75%;
	float: right;
	padding-left: 20px;
}

#slide img{
	width: 100%;
}

.section{
	clear: both;
	margin-top: 30px;
}

.title{
	background: #2e7d32;
	color: white;
	padding: 10px;
	width: 250px;
	border-radius: 20px;
}

.list{
	display: flex;
	gap: 20px;
	margin-top: 20px;
}

.item{
	flex: 1;
	border: 1px solid #ccc;
	text-align: center;
	border-radius: 10px;
	padding: 10px;
	transition: 0.3s;
}

.item img{
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.item:hover{
	transform: translateY(-5px);
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.item h2{
	font-size: 16px;
	color: #2e7d32;
}

.item p{
	color: orange;
	font-weight: bold;
}

#footer{
	background: #2e7d32;
	color: white;
	text-align: center;
	padding: 20px;
	margin-top: 50px;
}