.help-container {
  position: fixed;
  max-width: 400px;
  bottom: 90px;
  right: 20px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  font-size: 24px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 5px 40px;
  padding: 20px;
}
.help-link {
  color: #2d0113;
  text-decoration: none;
  font-size: 1.6rem;
}
.help-link:hover {
  text-decoration: underline;
}
.help-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #c60554;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.help-button:hover {
  transform: scale(1.1);
}

.icon-help {
  background: url("/img/icon-help.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
