/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

h1, h2 {
  font-weight: bold;
  color: #228b22; /* Forest green */
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 24px;
}

/* Header Styles */
header {
  background-color: #d2b48c; /* Tan */
  padding: 20px;
  text-align: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline-block;
  margin-right: 20px;
}

nav a {
  color: #333;
  text-decoration: none;
}

nav a:hover {
  color: #228b22; /* Forest green */
}

/* Main Content Styles */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

section {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#home {
  background-image: linear-gradient(to bottom, #d2b48c, #f9f9f9);
}

#about img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

#services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#services li {
  margin-bottom: 10px;
}

#services li:before {
  content: "\2022";
  font-size: 14px;
  color: #228b22; /* Forest green */
  margin-right: 10px;
}

/* Contact Form Styles */
#contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact input, #contact textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
}

#contact button[type="submit"] {
  background-color: #228b22; /* Forest green */
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#contact button[type="submit"]:hover {
  background-color: #3e8e41; /* Darker forest green */
}

/* Footer Styles */
footer {
  background-color: #d2b48c; /* Tan */
  padding: 10px;
  text-align: center;
  color: #333;
}

/* Mobile Styles */
@media (max-width: 768px) {
  main {
    flex-direction: column;
  }

  section {
    margin-bottom: 20px;
  }

  #about img {
    height: 150px;
  }

  #contact form {
    flex-direction: column;
    align-items: center;
  }
}
/* ... existing styles ... */

/* Services Page Styles */
#services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#services li {
  margin-bottom: 20px;
}

#services h2 {
  margin-top: 0;
}

/* Contact Page Styles */
#contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact input, #contact textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
}

#contact button[type="submit"] {
  background-color: #228b22; /* Forest green */
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#contact button[type="submit"]:hover {
  background-color: #3e8e41; /* Darker forest green */
}

#contact address {
  margin-top: 20px;
}

#contact address h2 {
  margin-top: 0;
}

#contact address p {
  margin-bottom: 10px;
}
/* ... existing styles ... */

/* Home Page Styles */
#home {
  background-image: linear-gradient(to bottom, #d2b48c, #f9f9f9);
  padding: 20px;
  text-align: center;
}

#features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#features li {
  margin-bottom: 10px;
}

#features li:before {
  content: "\2022";
  font-size: 14px;
  color: #228b22; /* Forest green */
  margin-right: 10px;
}

#testimonials blockquote {
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#testimonials blockquote p {
  margin-bottom: 10px;
}

#call-to-action {
  padding: 20px;
  text-align: center;
}

#call-to-action .btn {
  background-color: #228b22; /* Forest green */
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#call-to-action .btn:hover {
  background-color: #3e8e41; /* Darker forest green */
}
