.floating-menu {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000;
}

.menu-item {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #ae0001;
  color: white;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s;
  font-size: 14px;
}

.menu-item:hover {
  transform: scale(1.05);
}

.menu-item a{
  color: inherit;
}

.menu-icon {
  margin-right: 10px;
  font-size: 18px;
}

.close-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #4169e1;
  border: 1px solid #4169e1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 20px;
  margin-top: 10px;
}

.menu-item.first{
  background-color: #1e3a8a;
}

.menu-item.second{
  background-color: #ae0001;
}

.menu-item.third{
  background-color: #4169e1;
}

