@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; }

.cookie-banner {
  display: none;
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 10000;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background-color: #002366;
  border-radius: 20px;
  padding: 25px 40px;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  color: #ffffff;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
}

.cookie-link {
  color: #4ea8de;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.cookie-link:hover { text-decoration: underline; opacity: 0.9; }

.cookie-btn {
  outline: none;
  background-color: #5cb8db;
  color: #ffffff;
  border: none;
  border-radius: 25px;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.cookie-btn:hover { background-color: #4aa7ca; }
.cookie-btn:active { transform: scale(0.98); }

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
    text-align: left;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-btn { width: 100%; padding: 12px 20px; }
}

.cookie-show { display: flex !important; }
