.top-part {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0E0C09;
  padding: 13.5px 20px;
}

.rating-image {
  max-height: 21px;
  width: auto;
  margin-right: 16px;
}

.top-part__text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  margin-right: 8px;
}

.trustpilot-image {
  max-height: 24px;
  width: auto;
}

.bottom-part {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #C9EC59;
  padding: 12px 20px;
  gap: 80px;
}

.feature__item {
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
}

.feature__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #0E0C09;
}

.bottom-part__feature {
  width: 20px;
  height: auto;
}

.bottom-part__text {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .top-part {
    padding: 16px 16px;
  }

  .rating-image {
    max-height: 16px;
    margin-right: 8px;
  }

  .top-part__text {
    font-size: 12px;
    margin-right: 0;
  }

  .bottom-part {
    padding: 6px 26px;
    gap: 17px;
  }

  .feature__item:not(:last-child)::after {
    right: -8.5px;
  }

  .bottom-part__text {
    font-size: 10px;
  }
}