/* .service */

.service {
  padding: 25px 0;
  font-family: "游明朝", "Yu Mincho", serif;
  color: #707070;
}

.service-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-image {
  width: 85%;
  margin: auto;
}

.service h1 {
  font-size: 35px;
  position: relative;
  background: url("../img/hero-img.png") no-repeat center/cover;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  z-index: 1;
  letter-spacing: 2px;
}

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

.service-text p {
  padding: 50px 0 25px;
}