.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #192c4d;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Inter 24 Pt", "Inter 18 Pt", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

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

.cookie-consent-text {
  flex: 1;
  text-align: center;
}

.cookie-consent-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
}

.cookie-consent-text strong {
  font-weight: 700;
  color: #ffffff;
}

.cookie-consent-link {
  color: #87bee8;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-consent-link:hover {
  color: #ffffff;
}

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

.cookie-consent-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  min-width: 140px;
}

.cookie-consent-btn-accept {
  background-color: #87bee8;
  color: #192c4d;
}

.cookie-consent-btn-accept:hover {
  background-color: #ffffff;
  color: #192c4d;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cookie-consent-btn-necessary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-consent-btn-necessary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #87bee8;
  color: #87bee8;
}

@media (min-width: 768px) {
  .cookie-consent-content {
    flex-direction: row;
    gap: 24px;
  }

  .cookie-consent-text {
    text-align: left;
  }

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

  .cookie-consent-buttons {
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .cookie-consent-banner {
    padding: 16px;
  }

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

  .cookie-consent-btn {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 120px;
  }

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

  .cookie-consent-btn {
    flex: 1;
    min-width: 0;
  }
}

.cookie-consent-btn:focus {
  outline: 2px solid #87bee8;
  outline-offset: 2px;
}

.cookie-consent-link:focus {
  outline: 2px solid #87bee8;
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent-banner {
    transition: none;
  }

  .cookie-consent-btn {
    transition: none;
  }
}

