    .body {
      margin: 0;
      padding: 0;
    }
    
    .call-button {
      position: fixed;
      right: 20px;
      bottom: 40px;
      width: 40px;
      height: 40px;
      border-radius: 13%;
      background: linear-gradient(135deg, #FFD700, #FFA500); /* oltin gradient */
      
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(255, 165, 0, 0.5);
      z-index: 999;
      animation: pulse 1.5s infinite;
      text-decoration: none;
      transition: transform 0.3s ease;

    }
    display: flex;

    .call-button:hover {
      transform: scale(1.1);
    }
    
    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
      }
      70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
      }
      
      
      a.call-button {
  text-decoration: none;
  outline: none;
  border: none;
}
