.service-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.service-banner picture,
.service-banner img {
  display: block;
  width: 100%;
}

.service-banner img {
  height: 360px;
  object-fit: cover;
}

.service-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.service-banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 90%;
  max-width: 900px;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.service-banner__title {
  margin: 0 0 20px;
  color: #fff;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
}

.service-banner__text {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
}

.service-about {
  max-width: 1100px;
  margin-bottom: 50px;
}

.service-about p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.7;
}

.service-about p:last-child {
  margin-bottom: 0;
}

.repair-advantages {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.repair-advantages__item {
  flex: 1;
  padding: 35px 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.repair-advantages__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.repair-advantages__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.repair-advantages__title {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}

.repair-advantages__text {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
}

@media (max-width: 768px) {
  .service-banner img {
    height: 420px;
  }

  .service-banner__title {
    font-size: 28px;
  }

  .service-banner__text {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .repair-advantages {
    flex-wrap: wrap;
  }

  .repair-advantages__item {
    width: calc(50% - 15px);
    flex: none;
  }
}

@media (max-width: 767px) {
  .repair-advantages {
    flex-direction: column;
  }

  .repair-advantages__item {
    width: 100%;
  }

  .service-about p {
    font-size: 16px;
  }

  .repair-advantages__title {
    font-size: 20px;
  }

  .repair-advantages__text {
    font-size: 14px;
  }
}
