  .whatsapp-support {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      border-radius: 10px;
      padding: 12px 20px;
      text-decoration: none;
      font-weight: bold;
      font-family: sans-serif;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      transition: background-color 0.3s ease;
      z-index: 9999;
    }

    .whatsapp-support:hover {
      background-color: #1da851;
    }

    .whatsapp-support img {
      width: 50px;
      height: 50px;
      margin-right: 10px;
    }