.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    text-decoration: none;
  }

  .whatsapp-float:hover {
    background-color: #128C7E;
  }

  .whatsapp-icon {
    margin-top: 2px;
  }