#cookieConsent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  max-width: 640px;
  margin: 0 auto;
  background: #EDF4F4;
  border: 1px solid #D9E4E4;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(12, 60, 70, 0.12);
  font-family: 'Inter', system-ui, sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

@media (min-width: 720px) {
  #cookieConsent {
    left: 16px;
    right: auto;
    margin: 0;
  }
}

#cookieConsent p {
  margin: 0;
  flex: 1 1 320px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #0C3C46;
}

#cookieConsent a {
  color: #2A7680;
  font-weight: 600;
  text-decoration: none;
}

#cookieConsent a:hover {
  text-decoration: underline;
}

#cookieConsentAccept {
  flex: 0 0 auto;
  background: #2A7680;
  color: #FFFFFF;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  min-height: 40px;
}

#cookieConsentAccept:hover {
  background: #235f68;
}

#cookieConsent.cc-hidden {
  display: none;
}
