    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      z-index: 999;
      transition: transform 0.3s ease;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    .whatsapp-icon {
      font-size: 30px;
    }

    @media (max-width: 600px) {
      .whatsapp-float {
        width: 50px;
        height: 50px;
      }

      .whatsapp-icon {
        font-size: 24px;
      }
    }