
  .contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1b1b1b;
    background-color: transparent;
    border: 1px solid #d4d4d4;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 300ms ease;
    box-sizing: border-box;
  }

  .contact-button:hover {
    background-color: #e9e9e9;
  }

  .contact-button .icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .contact-button-wrapper {
    width: 100%;
    display: block;
  }
