.contact-button {
  font-size: 24px;
  padding: 10px;
  border: none;
  background-color: #ffb607;
  color: white;
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  border-radius: 5px;
  border: 0.5px solid black;
}

@keyframes vibrate {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

.vibrate-once {
  animation: vibrate 0.5s linear;
}

.contact-info {
  position: fixed;
  bottom: 70px; /* Adjust this value based on button size and desired gap */
  right: 20px; /* Align with the button */
  display: none; /* Start hidden */
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999; /* Just below the button to avoid overlap */
}

@media (max-width: 600px) {
  .contact-button,
  .contact-info {
    right: 10px; /* Adjust for smaller screens */
  }
}

.contact-text {
  font-weight: bold;
  display: flex;
  align-items: center;
}

.contact-info {
  display: none;
  align-items: flex-start;
}

.contact-column {
  flex: 1;
  margin-right: 5px;
}

.contact-text,
.contact-column p {
  margin: 4px 0; /* Устанавливает вертикальные отступы для элементов */
}

.contact-column a {
  color: #ffb607; /* Цвет ссылок */
  text-decoration: none; /* Убирает подчеркивание у ссылок */
}

.contact-column a:hover {
  color: black; /* Цвет ссылок при наведении курсора */
}
