* {
	margin:0;
	padding:0;
	box-sizing: border-box;
	font-family: Arial, Sans-serif
}

body {
	line-height: 1.6;
}

.navbar {
	display: flex;
	justify-content: space-between;
	padding: 20px;
	color: white;
}

.hero {
	background: #0077cc;
	color: white;
	height: 90vh;
	display: flex;
	flex-direction: column;
	border-bottom: #f4f4f4 5px solid;
}

.hero-content {
	margin: auto;
	text-align: center;
}

.hero h1 {
	font-size: 2.5em;
}

.hero span {
	color: red;
	background: white;
	border-radius: 5px;
}

.btn {
	display: inline-block;
	margin-top: 15px;
	background: white;
	color #0077cc;
	text-decoration: none;
	border-radius: 5px;
	transition: 0.3s;
}

.btn:hover {
	background: #005fa3;
	color: white;
}

.services {
	padding: 50px 20px;
	text-align: center;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)));
	gap: 20px;
	margin-top: 20px;
}

.card {
	padding: 20px;
	background: #f4f4f4;
	border-radius: 10px;
}

.about {
	padding: 40px;
	text-align: center;
	background: #eef6fb;
}

.testimonials {
	padding: 40px;
	text-align: center;
}

.testimonial {
	margin-top: 20px;
	font-style: italic;
}

.contact {
	padding: 40px;
	text-align: center;
	background: #f4f4f4;
}

form {
	max-width: 400px;
	margin: auto;
}

input, texarea {
	width: 100px;
	padding: 10px;
	margin: 10px 0;
}

footer {
	text-align: center;
	padding: 20px;
	background: #0077cc;
	color: white;
}
