.legal-prose {
  color: rgb(51 65 85);
  line-height: 1.65;
  font-size: 15.5px;
}
[data-theme='dark'] .legal-prose {
  color: rgb(203 213 225);
}

.legal-prose h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: rgb(15 23 42);
}
[data-theme='dark'] .legal-prose h1 {
  color: rgb(231 233 234);
}

.legal-prose .lead {
  color: rgb(100 116 139);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
[data-theme='dark'] .legal-prose .lead {
  color: rgb(148 163 184);
}

.legal-prose h2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  color: rgb(15 23 42);
}
[data-theme='dark'] .legal-prose h2 {
  color: rgb(231 233 234);
}

.legal-prose p {
  margin-bottom: 0.9rem;
}

.legal-prose ul {
  list-style: disc;
  padding-left: 1.35rem;
  margin-bottom: 1rem;
}

.legal-prose ul li {
  margin-bottom: 0.35rem;
}

.legal-prose a {
  color: #1d9bf0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-prose a:hover {
  color: #1a8cd8;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(29, 155, 240, 0.08), rgba(249, 24, 128, 0.05));
  border: 1px solid rgb(226 232 240);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  margin: 1.5rem 0 2rem;
}
[data-theme='dark'] .contact-card {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.contact-card-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(100 116 139);
  font-weight: 600;
}
[data-theme='dark'] .contact-card-label {
  color: rgb(148 163 184);
}

.contact-card-handle {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(15 23 42);
}
[data-theme='dark'] .contact-card-handle {
  color: rgb(231 233 234);
}

.contact-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: #1d9bf0;
  color: white !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s ease, transform 0.15s ease;
}
.contact-card-btn:hover {
  background: #1a8cd8;
  transform: translateY(-1px);
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.25rem;
  border-radius: 0.85rem;
  background: rgba(15, 23, 42, 0.96);
  color: rgb(226 232 240);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  animation: cookieIn 0.35s ease;
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  flex: 1;
  min-width: 220px;
  margin: 0;
  line-height: 1.45;
}
.cookie-banner a {
  color: #1d9bf0;
  text-decoration: underline;
}
.cookie-banner button {
  background: #1d9bf0;
  color: white;
  border: 0;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.cookie-banner button:hover {
  background: #1a8cd8;
}
