/* Cookie Consent Banner */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: 'DM Sans', sans-serif;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  border-top: 3px solid #43BAFF;
}

#cookie-consent-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.cookie-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-weight: 700;
}

.cookie-text p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
  max-width: 800px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn.accept {
  background-color: #43BAFF;
  color: white;
}

.cookie-btn.accept:hover {
  background-color: #1a9ce6;
}

.cookie-btn.reject {
  background-color: #f1f1f1;
  color: #666;
  border: 1px solid #ddd;
}

.cookie-btn.reject:hover {
  background-color: #e5e5e5;
  color: #333;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}
