    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: 'Montserrat', sans-serif;
      background-color: #f8f9fa;
    }
    .gradient-bg {
      background: linear-gradient(135deg, #00b140 0%, #009933 100%);
    }
    .gradient-text {
      background: linear-gradient(135deg, #00b140 0%, #009933 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hover-scale {
      transition: transform 0.3s ease;
    }
    .hover-scale:hover {
      transform: scale(1.03);
    }
    .dropdown:hover .dropdown-menu {
      display: block;
    }
    @media (max-width: 768px) {
      .mobile-hidden {
        display: none;
      }
    }
    /* Добавленные стили для контейнера */
    .site-container {
      width: 100%;
      max-width: 1536px; /* или любое другое значение по вашему выбору */
      margin: 0 auto;
    }
    .header-container {
      width: 100%;
      max-width: 1536px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    .chat-toggle {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #00ab59;
  color: #fff;
  padding: 17px 17px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.chat-toggle i {
  font-size: 25px;
}

.chat-options {
  position: fixed;
  bottom: 140px;
  right: 31px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.chat-options a {
  background-color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: #00ab59;
  font-size: 20px;
  transition: transform 0.3s ease;
}
.chat-options a:hover {
  transform: scale(1.1);
}
