.serviceImageGrid {
  width: 100%;
  background: var(--lightBlue);
}
.sig__container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  padding: 115px 0;
}
.sig__intro {
  text-align: center;
  margin-bottom: 80px;
}
.sig__top {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
.sig__title {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  margin: 16px auto 24px auto;
  max-width: 765px;
}
.sig__text {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin: 0 auto 24px auto;
  max-width: 800px;
}
.sig__btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 30px;
  text-decoration: none;
  background: #0a2740;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border: 1px solid #0a2740;
}
.sig__btn:hover {
  background: #fff;
  color: #0a2740;
  border: 1px solid #0a2740;
}

.sig__two-col {
  display: grid;
  grid-template-columns: 1fr 60%;
  gap: 80px;
  align-items: center;
  position: relative;
}
.sig__image-col {
  height: 100%;
}
.sig__image-wrap {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.sig__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sig__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  row-gap: 65px;
  align-items: flex-start;
}
.sig__card {
  display: grid;
  gap: 16px;
}
.sig__card-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.sig__card-title {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin: 0;
}
.sig__card-text {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}
.sig__card-text p {
  margin: 0;
}
.sig__card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
  margin-top: 5px;
}
.sig__feature-item {
  position: relative;
  padding-left: 16px;
  display: flex;
  align-items: start;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.sig__feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}
.sig__card-link {
  text-align: end;
  color: #fff;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 20px;
}
.sig__card-link:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .sig__two-col {
    grid-template-columns: 1fr;
  }
  .sig__grid {
    grid-template-columns: 1fr;
  }
}
