* {
    margin: 0;
    padding: 0;
  }

  body {
    font-family: Josefin Sans;
  }
a{
  text-decoration: none;
}


.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .circle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s;
  }

  .circle-btn:hover {
    transform: scale(1.1);
  }

  .gradient-btn {
    background: linear-gradient(135deg, #928d2c, #d2ea1b);
    border: 2px solid white;
  }

  .whatsapp-btn {
    background-color: #25D366;
    text-decoration: none;
    border: 2px solid white;
  }