.service-text p,
.extended-content p {
  font-size: 1rem;
}

.service-card {
  display: grid;
  gap: 2rem;
  margin-bottom: 1rem;
  position: relative;
  &:nth-of-type(odd) {
    grid-template-columns: 1fr 1fr;
  }
}

.service-container:nth-child(even) {
  .service-card {
    grid-template-columns: 1fr 2fr;
  }
}
.service-container:nth-child(odd) {
  .service-card {
    grid-template-columns: 2fr 1fr;
  }
}


.service-image {
  overflow: hidden;
  border-radius: 8px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}

.service-image img {
  width: 100%;
}

.service-content {
  flex: 0 0 55%;
}

.service-text {
  margin-bottom: 1rem;
}
.extended-content {
  display: none;
  margin-top: 1rem;
}

.read-more-btn {
  background-color: #007a41;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
  }

  /* .service-image,
  .service-content {
    flex: 0 0 100%;
  } */
}

.service-divider {
  width: 100%;
  height: 30px;
  margin: 40px 0;
  background-image: url("../images/service-line.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.service-divider-left {
  width: 100%;
  height: 30px;
  margin: 40px 0;
  background-image: url("../images/service-line-left.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.load-more-container {
  text-align: center;
  margin: 40px 0;
}

.load-more-btn {
  background-color: #007a41;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s;
}

.load-more-btn:hover {
  background-color: #005a31;
}

#additional-services {
  display: none;
  max-width: 1140px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1200px) {
  #additional-services {
    max-width: 1140px;
  }
}

@media (max-width: 1199px) {
  #additional-services {
    max-width: 960px;
  }
}

@media (max-width: 991px) {
  #additional-services {
    max-width: 720px;
  }
}

@media screen and (max-width: 600px) {
  .service-card {
    display: flex;
    align-items: center;

  }
  .service-image {
    width: 55%;
    height: 20rem;
    
  }
  .service-container:nth-child(even) {
    .service-card {
      grid-template-columns: 1fr;
    }
  }
  .service-container:nth-child(odd) {
    .service-card {
      flex-direction: column-reverse;
    }
  }
}