



  .btn-need-help{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    border-radius: 1rem;

    background-color: #ffffff;
    border: 1px solid #cbd5e1;

    padding: 0.75rem 1.25rem;

    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;

    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
    text-decoration: none;
  }
  .btn-need-help:hover {
     background-color: #f8fafc;
     color: #0f172a;
  }
  .btn-need-help:focus {
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.35);
    color: #0f172a;
  }


    