.floating-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
  }
  
  .floating-btn a {
    display: flex;
    align-items: center;
    background-color: #9b6038;
    color: #fff;
    text-align: center;
    font-size: 13px;
    width: 150px;
    height: 50px;
    border-radius: 5px;
    text-decoration: none;
  }
  
  .floating-btn a img {
    height: 35px;
    margin-right: 10px;
    padding-left: 10px;
  }
  
  .floating-btn a .caption {
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .floating-btn a:hover {
    background-color: #64a024;
    color:black;
  }
  /* Media queries for mobile responsiveness */
  @media only screen and (max-width: 768px) {
    .floating-btn {
      bottom: 10px;
      left: 10px;
    }
    
    .floating-btn a {
      font-size: 14px;
      width: auto;
      height: 50px;
    }
    
    .floating-btn a img {
      height: 30px;
      margin-right: 5px;
    }
    
    .floating-btn a .caption {
      display: none;
    }
  
    
  }