/* styles.css */

/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation styles */
nav {
  background-color: #333;
  color: #fff;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #555;
  padding: 10px;
}

.nav-menu li:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 5px 0;
}

/* Header styles */
header {
  background-image: url(content-lawn-mowing-stripes.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

h2 {
  font-size: 20px;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Services section styles */
.services {
  padding: 80px 0;
  text-align: center;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  list-style: none;
}

.service-item {
  flex-basis: 300px;
  margin: 20px;
  text-align: center;
}

.service-image {
  margin-bottom: 10px;
}

.service-image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

/* Reviews section styles */
.reviews {
  background-color: #f5f5f5;
  padding: 80px 0;
  text-align: center;
}

.review-slider {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.review {
  max-width: 600px;
  margin: 0 auto;
}

.customer-name {
  margin-top: 10px;
}

/* Contact section styles */
#contact {
  background-image: url(how-to-lay-mulch-around-foundation.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
  text-align: center;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-info {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
}

.contact-info:hover {
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
  header {
    padding: 60px 0;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .service-item {
    flex-basis: 200px;
  }
}
