#language-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #006eff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulsating 4s ease-in-out infinite;
    z-index: 9999;
  }
  
  #phone {
    color: white;
    font-size: 24px;
    display: block;
    text-align: center;
    line-height: 60px; /* Adjust based on the button height */
  }
  
  @keyframes pulsating {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(31, 35, 255, 0.7);
    }
    50% {
      transform: scale(1.1);
      box-shadow: 0 0 0 0px rgba(201, 45, 2, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(201, 45, 2, 0);
    }
  }
  #language-toggle:hover {
    background-color: rgba(31, 35, 255, 0.7);
  }
  
  #language-toggle.clicked {
    background-color: rgba(31, 35, 255, 0.7);
  }
  
  #arrowkey {
    transition: transform 0.3s ease-in-out;
    display: inline-block;
    margin: 10px;
  }
  
  #question.collapsed #arrowkey {
    transform: rotate(90deg);
  }
  #question {
    cursor: pointer !important;
  }
  
  #language-toggle {
    display: none;
  }
  
  @media (max-width: 767px) {
    #language-toggle {
      display: block;
    }
  }