.need-help-wrapper {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  border-radius: 8px;
  background: var(--blue2, #f2f8fe);
}

.need-help-title-description-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.need-help-title {
  display: flex;
  align-items: center;
  gap: 6px;
}

.need-help-title svg,
.need-help-contact .body1 {
  color: var(--blue1);
}

.services-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.service-item svg {
  width: 20px;
  height: 20px;
  color: var(--greenSuccess);
}

.need-help-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.need-help-contact a:hover {
  text-decoration: underline;
}

.need-help-contact-wrapper {
  display: flex;
  gap: 40px;
}

.need-help-contact-item {
  display: flex;
  gap: 12px;
}

.need-help-contact-item {
  justify-content: center;
  align-items: center;
  color: var(--blue1);
}

/* Separator */
.separator {
  width: 100%;
  border-top: 1px solid var(--border1);
}
/* responsive */
@media (max-width: 768px) {
  .need-help-contact-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: stretch;
  }
  .services-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .need-help-title-description-wrapper {
    margin-bottom: -4px;
  }
  .need-help-contact-wrapper
    .need-help-contact-item
    .need-help-contact:first-child {
    padding-right: 13px;
  }
}
