/* Cookie Consent Banner Styles */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #000080 0%, #005df0 100%);
  color: #fff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

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

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

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-text h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #f8b80d;
}

.cookie-consent-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.95;
}

.cookie-consent-text a {
  color: #f8b80d;
  text-decoration: underline;
}

.cookie-consent-text a:hover {
  color: #fff;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: #f8b80d;
  color: #000080;
}

.cookie-btn-accept:hover {
  background-color: #ffc933;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(248, 184, 13, 0.4);
}

.cookie-btn-decline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cookie-btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  #cookie-consent-banner {
    padding: 16px;
  }

  .cookie-consent-container {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-text {
    min-width: 100%;
  }

  .cookie-consent-text h4 {
    font-size: 16px;
  }

  .cookie-consent-text p {
    font-size: 13px;
  }

  .cookie-consent-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 13px;
  }
}
