<style>
	h1, h2, h3, h4, h5, h6 {
		font-weight: 700;
	}
	
	/* Navigation */
	.navbar {
		background-color: #232323;
	}
	
	.navbar-brand {
		color: #fff;
		font-size: 1.5em;
		font-weight: 700;
	}
	
	.nav-link {
		color: #fff !important;
		font-size: 1.1em;
		font-weight: 400;
	}
	
	.nav-link:hover, .navbar-brand:hover {
		color: #6EB7B0 !important;
	}
	
	.navbar-toggler {
		border-color: #6EB7B0;
	}
	
	.navbar-toggler-icon {
		background-image: url('data:image/svg+xml,%3csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3e%3cpath stroke="rgba(110, 183, 176, 0.8)" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3e%3c/svg%3e');
	}
	
	/* Header */
	#header {
		background-image: url('https://via.placeholder.com/1500x700');
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;
		height: 700px;
		color: #fff;
		display: flex;
		align-items: center;
	}
	
	#header-content {
		margin: auto;
		text-align: center;
	}
	
	#header h1 {
		font-size: 5em;
		margin-bottom: 0.5em;
	}
	
	#header h2 {
		font-size: 2em;
		font-weight: 400;
		margin-bottom: 1.5em;
	}
	
	/* About */
	#about {
		background-color: #F4F4F4;
		padding: 4em 0;
	}
	
	#about h2 {
		margin-bottom: 1.5em;
	}
	
	#about p {
		font-size: 1.1em;
		line-height: 1.8em;
		margin-bottom: 2em;
	}
	
	/* Services */
	#services {
		padding: 4em 0;
	}
	
	#services h2 {
		margin-bottom: 1.5em;
	}
	
	#services .service-item {
		margin-bottom: 3em;
	}
	
	#services i {
		color: #6EB7B0;
		font-size: 3em;
		margin-bottom: 0.5em;
	}
	
	#services h4 {
		font-size: 1.5em;
font-weight: 700;
margin-bottom: 1em;
}

#services p {
	font-size: 1.1em;
	line-height: 1.8em;
}

/* Contact */
#contact {
	background-color: #232323;
	color: #fff;
	padding: 4em 0;
}

#contact h2 {
	margin-bottom: 1.5em;
}

#contact p {
	font-size: 1.1em;
	line-height: 1.8em;
	margin-bottom: 2em;
}

.contact-form label {
	font-weight: 700;
	margin-bottom: 0.5em;
	display: block;
}

.contact-form input, .contact-form textarea {
	border: none;
	background-color: #F4F4F4;
	padding: 1em;
	margin-bottom: 2em;
	width: 100%;
}

.contact-form button[type="submit"] {
	background-color: #6EB7B0;
	border: none;
	color: #fff;
	padding: 1em 2em;
	font-size: 1.1em;
	font-weight: 700;
	border-radius: 3px;
	transition: background-color 0.2s ease-in-out;
}

.contact-form button[type="submit"]:hover {
	background-color: #232323;
	cursor: pointer;
}

/* Footer */
footer {
	background-color: #232323;
	color: #fff;
	padding: 2em 0;
}

footer p {
	font-size: 1.1em;
	line-height: 1.8em;
	margin: 0;
}

/* Hamburger menu */
#hamburger {
	position: absolute;
	top: 1.5em;
	right: 1.5em;
	z-index: 1000;
	display: none;
}

#hamburger:hover {
	cursor: pointer;
}

#hamburger .line {
	width: 30px;
	height: 4px;
	background-color: #fff;
	margin: 6px 0;
	border-radius: 2px;
}

#hamburger .line:first-child {
	margin-top: 0;
}

/* Media queries */
@media screen and (max-width: 768px) {
	#header {
		height: 500px;
	}
	
	#header h1 {
		font-size: 3em;
		margin-bottom: 0.5em;
	}
	
	#header h2 {
		font-size: 1.5em;
		margin-bottom: 1.5em;
	}
	
	#services .service-item {
		margin-bottom: 2em;
	}
	
	#contact {
		padding: 2em 0;
	}
}

@media screen and (max-width: 576px) {
	#header {
		height: 400px;
	}
	
	#header h1 {
		font-size: 2.5em;
		margin-bottom: 0.5em;
	}
	
	#header h2 {
		font-size: 1.2em;
		margin-bottom: 1.5em;
	}
	
	#services i {
		font-size: 2
	}
	
	#services .service-item {
		margin-bottom: 1.5em;
	}
	
	.contact-form input, .contact-form textarea {
		font-size: 0.9em;
	}
}

/* Animations */
@keyframes slideInRight {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideInLeft {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.service-item {
	animation: slideInRight 1s ease-out;
	animation-fill-mode: forwards;
}

#contact form {
	animation: slideInLeft 1s ease-out;
	animation-fill-mode: forwards;
}

#hamburger {
	display: block;
}
/* Hamburger Menu */
#hamburger {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px;
	z-index: 9999;
	color: #fff;
	background-color: #212121;
	border: none;
	border-radius: 0;
	font-size: 2em;
	cursor: pointer;
}

#hamburger:hover {
	background-color: #424242;
}

#hamburger:focus {
	outline: none;
}

#hamburger span {
	display: block;
	height: 3px;
	background-color: #fff;
	margin-bottom: 5px;
}

#hamburger .top {
	width: 30px;
}

#hamburger .middle {
	width: 25px;
}

#hamburger .bottom {
	width: 20px;
}

/* Hamburger Menu Overlay */
#overlay {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(33, 33, 33, 0.9);
	z-index: 9998;
	transition: opacity 0.3s ease;
}

#overlay.active {
	display: block;
}

#menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}

#menu li {
	margin-bottom: 2em;
}

#menu a {
	font-size: 1.5em;
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease;
}

#menu a:hover {
	color: #a7ff83;
}

@media only screen and (max-width: 768px) {
	nav {
		display: none;
	}
	
	#hamburger {
		display: block;
	}
	
	#menu {
		display: none;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		padding: 10px;
		text-align: center;
		z-index: 9999;
	}
	
	#menu li {
		margin-bottom: 1em;
	}
	
	#menu a {
		font-size: 2em;
	}
	
	#overlay.active {
		display: block;
		opacity: 0;
		transition: opacity 0.3s ease;
	}
}
/* Footer */
footer {
	background-color: #212121;
	color: #fff;
	padding: 2em 0;
	text-align: center;
	font-size: 0.9em;
}

footer a {
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease;
}

footer a:hover {
	color: #a7ff83;
}

@media only screen and (max-width: 768px) {
	footer {
		padding: 1em 0;
	}
}

/* Media Queries */
@media only screen and (max-width: 480px) {
	h1 {
		font-size: 2em;
	}
	
	h2 {
		font-size: 1.5em;
	}
	
	.service-item {
		animation: none;
	}
	
	#contact form {
		animation: none;
	}
}
/* Animations */
@keyframes slide-up {
	from {
		transform: translateY(50%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes slide-down {
	from {
		transform: translateY(-50%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.service-item {
	animation: slide-up 0.5s ease;
}

#contact form {
	animation: slide-down 0.5s ease;
}

#header .icon {
	animation: rotate 10s linear infinite;
}
/* Hamburger Menu */
.hamburger {
	display: none;
	position: fixed;
	top: 1em;
	right: 1em;
	z-index: 99;
	cursor: pointer;
}

.hamburger div {
	width: 35px;
	height: 5px;
	background-color: #fff;
	margin: 6px 0;
	transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #212121;
	color: #fff;
	z-index: 98;
	display: none;
}

.mobile-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.mobile-nav li {
	margin: 1em;
}

.mobile-nav a {
	color: #fff;
	font-size: 1.5em;
	text-decoration: none;
	transition: color 0.2s ease;
}

.mobile-nav a:hover {
	color: #a7ff83;
}

.mobile-nav .close-button {
	position: absolute;
	top: 1em;
	right: 1em;
	cursor: pointer;
}

/* Media Queries */
@media only screen and (max-width: 768px) {
	.hamburger {
		display: block;
	}
	
	.navbar {
		display: none;
	}
	
	.mobile-nav {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
}
/* Hamburger Menu Animation */
.hamburger.active div:nth-child(2) {
	opacity: 0;
}

.hamburger.active div:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active div:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav.active {
	display: flex;
}

.mobile-nav.active li {
	animation: slide-up 0.5s ease forwards;
	animation-delay: 0.2s;
}

/* Media Queries */
@media only screen and (max-width: 768px) {
	.hamburger div {
		background-color: #212121;
	}
	
	.hamburger.active div {
		background-color: #fff;
	}
	
	.mobile-nav {
		background-color: #fff;
		color: #212121;
	}
	
	.mobile-nav a:hover {
		color: #a7ff83;
	}
	
	.mobile-nav .close-button {
		color: #212121;
	}
	
	.mobile-nav.active .close-button:hover {
		color: #a7ff83;
	}
}
/* Animations */
@keyframes slide-up {
	from {
		transform: translateY(50%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
