.customer-satisfaction {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 28px;
  padding-bottom: 21px;
  background-color: rgb(226, 238, 250);
}

.customer-satisfaction h1 {
  margin: 0 0 12px;
  padding: 0;
  max-width: 100%;
  color: rgb(0, 30, 98);
  font-size: 22px;
  font-weight: 600;
}

.customer-satisfaction__subtitle {
  font-size: 15px;
  margin-bottom: 17px;
}

.customer-satisfaction__text {
  font-size: 15px;
  margin-bottom: 34px;
}

.customer-satisfaction__text p,
.customer-satisfaction__text ul,
.customer-satisfaction__text ol {
  max-width: 100%;
  padding: 0;
}

.customer-satisfaction__text ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.customer-satisfaction__text ul li {
  font-size: 15px;
  font-weight: 600;
  display: list-item;
  margin-bottom: 0;
  padding-left: 0;
}

.review {
  max-width: 555px;
  margin: 0 auto 31px;
  border-radius: 25px;
  font-size: 17px;
  line-height: 1;
  text-align: left;
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 11px 10px 23px;
  filter: drop-shadow(-1px -1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.15));
}

.review::after {
  content: "";
  border: 20px solid transparent;
  border-top: 20px solid white;
  border-bottom: 0;
  height: 0;
  width: 0;
  border-top-width: 35px;
  display: block;
  position: absolute;
  z-index: -1;
  left: 14%;
  bottom: -27px;
  transform-origin: center;
  transform: rotate(90deg) skew(-25deg) translateY(16.6666666667px);
}

.review__stars {
  display: flex;
  align-items: center;
  margin: 0 auto 14px;
  width: fit-content;
  gap: 4px;
}

.review__stars svg {
  width: 19px;
  height: 18px;
  flex-shrink: 0;
}

@media screen and (min-width: 991px) {
  .customer-satisfaction {
    padding-left: 0;
    padding-right: 0;
    padding-top: 40px;
    padding-bottom: 58px;
    text-align: center;
  }

  .customer-satisfaction h1 {
    font-size: 31px;
  }

  .customer-satisfaction__subtitle {
    font-size: 19px;
    margin-bottom: 41px;
  }

  .customer-satisfaction__text {
    font-size: 25px;
    margin-bottom: 51px;
  }

  .customer-satisfaction__text ul {
    padding-left: 20px;
    flex-direction: row;
    justify-content: center;
  }

  .customer-satisfaction__text ul li {
    font-size: 17px;
    margin-right: 26px;
    margin-bottom: 5px;
  }

  .review {
    font-size: 18px;
    margin: 0 auto 50px;
    border-radius: 78px;
    padding: 12px 30px 28px;
  }

  .review::after {
    border: 40px solid transparent;
    border-top: 40px solid white;
    border-top-width: 50px;
    left: 15%;
    bottom: -32px;
  }

  .review__stars {
    margin: 0 auto 11px;
    gap: 7px;
  }

  .review__stars svg {
    width: 28px;
    height: 27px;
  }
}