.services-section {
  padding: 100px 0;
  background: #f8fafc;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #0f2f56;
}

.services-header p {
  color: #64748b;
}

/* SERVICE ITEM */
.service-item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* TEXT */
.service-text {
  flex: 1;
}

.service-text h3 {
  font-size: 30px;
  margin: 15px 0;
  color: #0f2f56;
}

.service-text p {
  color: #64748b;
  margin-bottom: 20px;
}

.service-text ul {
  list-style: none;
}

.service-text ul li {
  margin-bottom: 10px;
  color: #334155;
  position: relative;
  padding-left: 25px;
}

.service-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1e7a55;
  font-weight: bold;
}

/* ICON */
.icon-box {
  width: 60px;
  height: 60px;
  background: #1e7a55;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: white;
  font-size: 22px;
  transition: 0.3s;
}

.icon-box:hover {
  transform: rotate(8deg) scale(1.1);
}

/* IMAGE */
.service-image {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.service-image img {
  width: 100%;
  transition: 0.6s ease;
}

.service-image:hover img {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .service-item,
  .service-item.reverse {
    flex-direction: column;
  }
}