.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #007A8E;
  color: white;
  padding: 20px 30px;
  display: block;
  z-index: 99999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-banner-left {
  flex: 1;
  margin-right: 30px;
}

.cookie-banner-text {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.cookie-dropdown {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 0;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-dropdown:hover {
  opacity: 0.8;
}

.cookie-dropdown-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.cookie-dropdown.active .cookie-dropdown-icon {
  transform: rotate(180deg);
}

.cookie-more-info {
  display: none;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}

.cookie-more-info.active {
  display: block;
}

.cookie-banner-buttons {
  display: flex;
  gap: 15px;
  white-space: nowrap;
}

.cookie-btn {
  border: 2px solid white;
  background-color: transparent;
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background-color: white;
  color: #007A8E;
}

.cookie-btn-decline {
  border-color: white;
  color: white;
}

.cookie-btn-decline:hover {
  background-color: white;
  color: #007A8E;
}

.cookie-banner.hidden {
  display: none;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-left {
    margin-right: 0;
    margin-bottom: 0;
    width: 100%;
  }

  .cookie-banner-text {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .cookie-dropdown {
    margin-bottom: 15px;
  }

  .cookie-banner-buttons {
    width: 100%;
    gap: 10px;
    margin-top: 15px;
  }

  .cookie-btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 14px;
  }
}
