main {
	background: #f7f9fc;
	color: #333;
	padding-bottom: 40px;
}

.banner {
	height: 220px;
	background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)),
		url('../img/about.jpeg');
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	margin-top: 0;
	margin-bottom: 40px;
}

.banner h1 {
	font-size: 42px;
	margin-bottom: 10px;
}

.banner p {
	font-size: 18px;
}


.about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.about img {
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.about h2 {
	color: #0066cc;
	margin-bottom: 20px;
	font-size: 32px;
}

.about p {
	line-height: 1.8;
	margin-bottom: 18px;
}

/* Features */

.features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-top: 60px;
}

.aboutcard {
	background: #fff;
	padding: 30px;
	text-align: center;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
	transition: .3s;
}

.aboutcard:hover {
	transform: translateY(-8px);
}

.aboutcard i {
	font-size: 42px;
	color: #ff7b00;
	margin-bottom: 15px;
}

.aboutcard h3 {
	margin-bottom: 10px;
}

/* Why Choose */

.why {
	margin-top: 70px;
	background: #fff;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.why h2 {
	margin-bottom: 25px;
	color: #0066cc;
}

.why ul {
	list-style: none;
}

.why li {
	padding: 12px 0;
	font-size: 18px;
}

.why i {
	color: #28a745;
	margin-right: 12px;
}

/* Team */

.team {
	margin-top: 70px;
}

.team h2 {
	text-align: center;
	margin-bottom: 40px;
	color: #0066cc;
}

.team-box {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.member {
	background: #fff;
	padding: 25px;
	text-align: center;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.member img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin-bottom: 15px;
	object-fit: cover;
}

.member h3 {
	margin-bottom: 5px;
}

.member span {
	color: #777;
}

/* Footer */

footer {
	background: #003366;
	color: #fff;
	text-align: center;
	padding: 25px;
	margin-top: 70px;
}

/* Responsive */

@media(max-width:992px) {

	.about {
		grid-template-columns: 1fr;
	}

	.features {
		grid-template-columns: repeat(2, 1fr);
	}

	.team-box {
		grid-template-columns: 1fr;
	}


}

@media(max-width:600px) {

	.banner {
		height: 170px;
		margin-top: 0px;
	}

	.banner h1 {
		font-size: 30px;
	}

	.banner p {
		font-size: 15px;
	}

	.features {
		grid-template-columns: 1fr;
	}

	.aboutcard {
		padding: 25px;
	}

}