body {
	font-family: Arial, sans-serif;
	background-color: #F7F7F7;
	color: #333;
}
.navbar {
	background-color: #5A8E7B;
	padding: 15px 20px;
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
	font-size: 1.8rem;
	font-weight: bold;
	color: #FFD700;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.navbar-brand:hover {
	color: #FFC300;
}

.navbar-nav .nav-link {
	color: #fff;
	font-size: 1.1rem;
	margin: 0 15px;
	padding: 10px 15px;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
	background-color: #FFD700;
	color: #333;
	transform: scale(1.1);
	box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

.navbar-toggler {
	border: none;
}

.navbar-toggler-icon {
	background-color: #FFD700;
	width: 30px;
	height: 3px;
	display: block;
	margin: 6px 0;
	border-radius: 2px;
}

.navbar-toggler-icon::after,
.navbar-toggler-icon::before {
	content: '';
	display: block;
	width: 30px;
	height: 3px;
	background-color: #FFD700;
	border-radius: 2px;
	margin: 6px 0;
}


.hero {
	background: linear-gradient(rgba(90, 142, 123, 0.8), rgba(90, 142, 123, 0.8)), url('assets/img/hero.jpg') center/cover no-repeat;
	height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.btn-custom {
	background-color: #FFD700;
	color: #333;
	border-radius: 30px;
	padding: 10px 20px;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-custom:hover {
	background-color: #FFC300;
	transform: scale(1.1);
}

.section {
	padding: 60px 15px;
}

.features .feature-box {
	text-align: center;
	padding: 20px;
	border-radius: 10px;
	background-color: #E3E3E3;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.features .feature-box:hover {
	background-color: #5A8E7B;
	color: white;
	transform: scale(1.05);
}

.services .card {
	border-radius: 10px;
	border: none;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.services .card:hover {
	transform: scale(1.05);
}

.cta {
	background-color: #5A8E7B;
	color: white;
	text-align: center;
	padding: 60px 15px;
}

.cta h2 {
	color: white;
}

.form-control {
	border-radius: 30px;
}
.about img {
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	width: 100%;
}

.text-block {
	background-color: #E3E3E3;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.pricing-card {
	background-color: #E3E3E3;
	border-radius: 10px;
	border: none;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.pricing-card .price {
	font-size: 2rem;
	color: #5A8E7B;
	font-weight: bold;
}
.contact-info {
	background-color: #E3E3E3;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h5 {
	color: #5A8E7B;
}

.form-control {
	border-radius: 30px;
}
iframe {
	border-radius: 10px;
	width: 100%;
	height: 300px;
	border: none;
}
.privacy-container {
	background-color: #E3E3E3;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.privacy-container h5 {
	color: #5A8E7B;
}
.terms-container {
	background-color: #E3E3E3;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.terms-container h5 {
	color: #5A8E7B;
}
footer {
	background-color: #333;
	color: #fff;
	padding: 15px 0;
}

footer a {
	color: #FFD700;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}

@media (max-width: 992px) {
	.navbar-nav {
			text-align: center;
	}

	.navbar-nav .nav-link {
			margin: 10px 0;
	}
}