/* Service Content Styles */
.service-content {
  background-color: #fff;
}

.section-title {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* .section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #f7941d;
} */

.service-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.service-item {
  margin-bottom: 30px;
}

.service-item-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-item p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.service-image {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 20px;
}

.service-image img {
  transition: transform 0.5s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

.service-conclusion {
  font-style: italic;
  color: #666;
  font-size: 16px;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}