.help-choice-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  padding: 10px 15px;
  margin-bottom: 15px;
  font-size: 13px;
}

.help-text {
  color: #333;
}

.help-btn {
  background: #25D366;
  color: #fff;
  padding: 6px 12px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  animation: floatBtn 2.5s ease-in-out infinite;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  transition: all 0.2s ease;
}

.help-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}