/* Cookie consent banner */
#cookieConsentBanner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100%;
  z-index: 2000;
  background: #0a2a44;
  color: #f5f7fa;
  padding: 1.1rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transition: bottom 0.35s ease;
}

#cookieConsentBanner.show {
  bottom: 0;
}

.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.cookie-consent-text {
  flex: 1 1 380px;
  font-size: 0.92rem;
  line-height: 1.5;
}

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

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-consent-actions button {
  border: none;
  border-radius: 30px;
  padding: 0.55rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cookie-consent-actions button:hover {
  opacity: 0.88;
}

#cookieConsentAccept {
  background: #d4a017;
  color: #0a2a44;
}

#cookieConsentReject,
#cookieConsentCustomize {
  background: transparent;
  color: #f5f7fa;
  border: 1px solid rgba(245, 247, 250, 0.4) !important;
}

#cookieConsentPanel {
  display: none;
  max-width: 1100px;
  margin: 1rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 247, 250, 0.15);
}

#cookieConsentPanel.show {
  display: block;
}

.cookie-consent-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}

.cookie-consent-option strong {
  display: block;
}

.cookie-consent-option input[type="checkbox"] {
  margin-top: 0.3rem;
}

#cookieConsentSave {
  background: #1a4d8c;
  color: #fff;
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent-actions {
    justify-content: flex-start;
  }
}

/* Legal pages (privacy / terms / cookies) */
.legal-content-section {
  padding: 4rem 0;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a2a44;
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
}

.legal-content p,
.legal-content li {
  color: #3a4a52;
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-content table {
  font-size: 0.9rem;
}
