/* Cookie Consent Banner Styles */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px 0;
  display: none;
}

.cookie-consent-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-consent-banner h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.cookie-consent-banner p {
  margin-bottom: 20px;
  font-size: 15px;
}

.cookie-options {
  margin-bottom: 25px;
}

.cookie-option {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option input[type="checkbox"] {
  margin-right: 10px;
}

.cookie-option label {
  font-weight: 600;
  color: var(--dark-color);
}

.cookie-description {
  margin-top: 5px;
  margin-left: 25px;
  font-size: 14px;
  color: var(--text-light);
}

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

/* Responsive cookie banner */
@media (max-width: 768px) {
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
    margin-bottom: 10px;
  }
}
