.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background-color: #ffffff;
  color: #333333;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  border: 1px solid #e0e0e0;
}

.cookie-banner.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50__, 20px);
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  text-indent: 0;
}
.cookie-banner-text p{
  margin: 0;
  padding: 0;
  font: inherit;
  text-indent: inherit;
}

.cookie-banner-text a {
  color: #a93e23;
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  text-decoration: none;
}

.cookie-banner-btn {
  background-color: #bf2f21;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.cookie-banner-btn:hover {
  background-color: #498f0c;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .cookie-banner-btn {
    width: 100%;
    text-align: center;
  }
}