/* Reset and basic styles */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f9f9f9;

}

.container {
  font-family: "Syne", sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header styles */
.header {
  background-color: #064700;
  color: #fff;
  padding: 20px 0;
}

.header h1 {
  margin: 0;
  text-align: center;
}

.header nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

.header nav ul li {
  margin: 0 15px;
}

.header nav ul li a {
  color: #fff;
  text-decoration: none;
}

/* Main section styles */
.main-section {
  background-color: #f9f9f9;
  text-align: center;
  padding: 60px 20px;
}

.main-section h2 {
  font-size: 2.5em;
}

.main-section p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #064700;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

/* Services section styles */
.services {
  background-color: #fff;
  padding: 60px 20px;
}

.services h2 {
  font-size: 2em;
  text-align: center;
}

.services ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.services ul li {
  font-size: 1.2em;
  margin: 10px 0;
}

/* Testimonials section styles */
.testimonials {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.testimonials h2 {
  font-size: 2em;
  text-align: center;
}

.testimonials blockquote {
  font-size: 1.2em;
  text-align: center;
  margin: 20px 0;
}

/* Contact section styles */
.contact {
  background-color: #fff;
  padding: 60px 20px;
}

.contact h2 {
  font-size: 2em;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.contact label {
  margin: 10px 0;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
}

.contact button {
  background-color: #2EAD4B;
  color: #fff;
  padding: 10px;
  border: none;
  margin-top: 20px;
  cursor: pointer;
}

/* Footer styles */
.footer {
  background-color: #064700;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

