.container .user-reviews {
  font-family: Arial, sans-serif;
}

.container .user-reviews h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.container .review {
  border: 1px solid #f0ad4e; /* светло-оранжевый бордер как на скрине */
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  background-color: #fff8f0;
}

.container .review-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.container .review-author {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
  font-style: italic;
}
.sticky-footer {
  position: fixed; /* закреплено внизу */
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000; /* можно заменить на нужный цвет */
  color: #fff;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.sticky-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.sticky-footer .logo {
  height: 60px;
  margin-right: 15px;
}

.sticky-footer .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 5px 0;
}

.sticky-footer .bonus {
  font-weight: bold;
  margin-bottom: 3px;
}

.sticky-footer .rating {
  font-size: 0.9rem;
  color: #FFD700; /* золотой для звезд */
}

.sticky-footer .btn {
  background-color: #FFB800;
  color: #000;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.sticky-footer .btn:hover {
  background-color: #FFA500;
}

/* Адаптив */
@media (max-width: 768px) {
  .sticky-footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sticky-footer .info {
    margin: 10px 0;
  }
  .sticky-footer .logo {
  height: 60px;
  margin-right: 0px;
}
}
html {
  scroll-behavior: smooth;
}

