/* Reset styles */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Font styles */
body {
	font-family: Arial, sans-serif;
	font-size: 16px;
}

h1, h2, h3 {
	font-weight: normal;
}

/* Header styles */
header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

.logo img {
	height: 50px;
}

nav ul {
	list-style: none;
	display: flex;
}

nav li {
	margin-left: 20px;
}

nav a {
	color: #333;
	text-decoration: none;
	padding: 10px;
	transition: all 0.3s ease-in-out;
}

nav a:hover {
	color: #80cbc4;
}

/* Hero section styles */
.hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 100px 50px;
	background-color: #80cbc4;
	color: #fff;
}

.hero-image img {
	max-width: 500px;
}

.hero-text {
	max-width: 500px;
}

.hero-text h1 {
	font-size: 36px;
	margin-bottom: 20px;
}

.hero-text p {
	font-size: 18px;
	margin-bottom: 20px;
}

.cta-button {
	background-color: #fff;
	color: #80cbc4;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.cta-button:hover {
	background-color: #80cbc4;
	color: #fff;
}

/* Features section styles */
.features {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 100px 50px;
	background-color: #fff;
}

.feature {
	max-width: 300px;
	text-align: center;
}

.feature img {
	height: 100px;
	margin-bottom: 20px;
}

.feature h2 {
	font-size: 24px;
	margin-bottom: 20px;
}

.feature p {
	font-size: 18px;
}

/* Pricing section styles */
.pricing {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 100px 50px;
	background-color: #80cbc4;
	color: #fff;
}

.pricing h2 {
	font-size: 36px;
	margin-bottom: 50px;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th, td {
	padding: 15px;
	text-align: center;
}

th {
	background-color: #fff;
	color: #333;
	font-weight: normal;
}

td {
	background-color: #f7f7f7;
	color: #333;
}

.cta-button.contact-us {
	background-color: transparent;
	border: 2px solid #fff;
	color: #fff;
	padding: 10px 20px;
	margin-top: 20px;
}

.cta-button.contact-us:hover {
	background-color: #fff;
	color: #80cbc4;
}

/* Testimonials section styles */
.testimonials {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 100px 50px;
	background-color: #fff;
}

.testimonial {
	max-width: 500px;
	margin-bottom: 50px;
}

.testimonial blockquote {
	font-size: 24px;
	margin-bottom: 20px;
}

.testimonial p {
	font-size: 18px;
}

.testimonial strong {
	font-weight: bold;
}

/* About Us section styles */
.about-us {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 100px 50px;
	background-color: #80cbc4;
	color: #fff;
}

.about-us h2 {
	font-size: 36px;
	margin-bottom: 50px;
}

.about-us p {
	max-width: 500px;
	text-align: center;
	font-size: 18px;
	margin-bottom: 50px;
}

.team-member {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 50px;
}

.team-member img {
	height: 150px;
	border-radius: 50%;
	margin-bottom: 20px;
}

.team-member h3 {
	font-size: 24px;
	margin-bottom: 10px;
}

.team-member p {
	font-size: 18px;
}

/* Footer styles */
footer {
	background-color: #333;
	color: #fff;
	padding: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.contact-info p {
	font-size: 18px;
	margin-bottom: 20px;
    color: #fff;
}

.contact-info a {
	font-size: 18px;
	margin-bottom: 20px;
    color: #fff;
}

.social-media {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.social-media a {
	margin-right: 20px;
}

.social-media img {
	height: 30px;
}

footer p {
	font-size: 14px;
	margin-top: 20px;
}
