.service-content {
  min-height: 612px;
  border-bottom: 0.5px solid #e2e2e2;
  padding: 15px 0;
  height: 100%;
  margin-top: 50px;
}

.order-left {
  /* background: #000; */
  height: 100%;
}
.order-left > div > h4 {
  font-size: 24px;
  font-family: "Roboto", sans-serif;
}

.feature-item {
  display: flex;
  list-style-type: none;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  margin-top: 10px;
}
.feature-item i {
  color: navy;
}

.feature-item div {
  flex: 1; /* Chiếm không gian còn lại */
}

.btn {
  margin-top: 25px;
  width: 120px;
  height: 40px;
  border-radius: 100px;
}

.order-right {
  /* min-height: 612px; // Áp dụng cho nhiều services */
  min-height: 590px; /* Áp dụng 1 service*/
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-right-container,
.order-right-container-black {
  width: 90%;
  height: 480px;
  border: 2px solid #e2e2e2;
  border-radius: 15px;
  position: relative;
  transition: transform 0.5s ease;
}
.order-right-container-black {
  background: #000;
  /* z-index: -1; */
}

.service-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.order-right-container:hover,
.order-right-container-black:hover {
  transform: scale(1.05);
}

@media (max-width: 576px) {
  .order-right-container,
  .order-right-container-black {
    width: 90%;
    height: 400px;
    border: 2px solid #e2e2e2;
    border-radius: 15px;
    position: relative;
    transition: transform 0.5s ease;
  }
  .order-right {
    min-height: 550px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
