/* Global styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #f5f5f5;
}

a {
  color: #507d2a;
  text-decoration: none;
}

/* Header styles */
header {
  background-color: #87a96b;
  color: white;
  padding: 10px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 120px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 48px;
  margin: 0;
}

/* Main styles */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border: 5px solid #d2f5d2;
  border-radius: 10px;
  background-color: #fff;
}

section {
  margin-bottom: 30px;
}

h2 {
  color: #006600;
  margin-top: 0;
}

ul {
  list-style: none;
  padding-left: 0;
}

li::before {
  content: "";
}

/* Services section styles */
#services {
  background-color: #d2f5d2;
  padding: 20px;
  border-radius: 10px;
}

.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 100%; /* Change this to adjust the maximum width of the slideshow */
  margin: auto;
  padding-bottom: 20px;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  cursor: pointer;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}


.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



#contact p {
  margin-bottom: 10px;
}





/* Footer styles */
footer {
  background-color: #87a96b;
  color: white;
  padding: 10px;
  font-size: 14px;
  text-align: center;
}
