/* Cookie Consent Styles */
/*
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FCF9F2;
  color: #3A5B4B;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  display: none;
  border-top: 2px solid #3A5B4B;
}

.cookie-consent.show {
  transform: translateY(0);
  display: block;
}

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

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 14px;
  line-height: 1.5;
  color: #3A5B4B;
}

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

.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background-color: #3A5B4B;
  color: #FCF9F2;
}

.cookie-btn.decline {
  background-color: transparent;
  border: 1px solid #3A5B4B;
  color: #3A5B4B;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}
