/* Start custom CSS for html, class: .elementor-element-1706aae */.scom-help-button-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 12px 0;
}

.scom-help-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: #e91b23;
  color: #ffffff;

  padding: 7px 14px;
  border-radius: 8px;

  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;

  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.22);
  transition: all 0.2s ease;
}

.scom-help-button:hover {
  background: #d9141c;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.28);
}

.scom-help-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.scom-help-image {
  width: 48px;
  height: auto;
  display: block;
  object-fit: contain;
}

.scom-help-text {
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 600px) {
  .scom-help-button-wrapper {
    justify-content: center;
    margin: 10px 0;
  }

  .scom-help-button {
    gap: 7px;
    padding: 7px 12px;
    border-radius: 7px;
    font-size: 14px;
  }

  .scom-help-image {
    width: 42px;
  }
}/* End custom CSS */