/* Services List */
.service-item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

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

.service-text {
  flex: 1;
}

.service-text h2 {
  font-size: 2.5rem;
  color: var(--charcoal-black);
  margin-bottom: 10px;
}

.service-divider {
  width: 60px;
  height: 4px;
  background-color: var(--crimson-red);
  margin-bottom: 20px;
}

.service-text p {
  font-size: 1.1rem;
  color: #555;
}

.service-image {
  flex: 1;
}

.service-image img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
  object-fit: cover;
  height: 400px;
}

/* Responsive */
@media (max-width: 900px) {
  .service-item, .service-item.reverse {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }
}
