.legal-root {
  max-width: 800px;
  margin: 20px auto 80px;
  padding: 0 32px;
  color: #cbd5e1;
  font-family: "Inter", "Roboto", -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}

.legal-root h1 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 48px;
  letter-spacing: -0.025em;
  text-align: center;
  line-height: 1.2;
}

.legal-root h2 {
  font-size: 1.75rem;
  color: #e2e8f0;
  margin: 80px 0 32px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.legal-root h3 {
  font-size: 1.25rem;
  color: #e2e8f0;
  margin: 48px 0 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.legal-root section {
  margin-bottom: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-root section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-root p,
.legal-root span,
.legal-root li {
  color: #cbd5e1;
  font-size: 16px;
  margin-bottom: 16px;
}

.legal-root ul,
.legal-root ol {
  margin: 24px 0;
  padding-left: 24px;
}

.legal-root li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-root li li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #94a3b8;
}

.legal-root b {
  color: #e2e8f0;
  font-weight: 600;
}

.legal-root a {
  color: #00d6b4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.legal-root a:hover {
  color: #14e6c7;
  text-decoration: underline;
}
.legal-root .cookie-prefs-box {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-status {
  font-size: 13px;
  color: #94a3b8;
}

.status-accepted {
  color: #00d6b4;
  font-weight: 500;
}

.status-declined {
  color: #f87171;
  font-weight: 500;
}

.status-none {
  color: #cbd5e1;
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-btn-small {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #cbd5e1;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.15s ease;
}

.cookie-btn-accept:hover {
  border-color: #00d6b4;
  color: #00d6b4;
}

.cookie-btn-decline:hover {
  border-color: #f87171;
  color: #f87171;
}

.legal-root .cookie-btn-main {
  background: #00d6b4;
  color: #0f172a;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  margin-right: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 214, 180, 0.25);
}

.legal-root .cookie-btn-main:hover {
  background: #14e6c7;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 214, 180, 0.35);
}

.legal-root .cookie-btn-outlined {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.legal-root .cookie-btn-outlined:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
/* Effective date styling */
.legal-root .effective-date {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 32px;
  font-weight: 400;
}

/* Responsive design */
@media (max-width: 768px) {
  .legal-root {
    margin: 15px auto 60px;
    padding: 0 20px;
    font-size: 15px;
  }
  
  .legal-root h1 {
    font-size: 1.5rem;
    margin-bottom: 36px;
  }
  
  .legal-root h2 {
    font-size: 1.5rem;
    margin: 60px 0 24px;
  }
  
  .legal-root h3 {
    font-size: 1.125rem;
    margin: 36px 0 12px;
  }
  
  .legal-root section {
    margin-bottom: 60px;
    padding-bottom: 30px;
  }
  
  .cookie-prefs-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .legal-root .cookie-btn-main,
  .legal-root .cookie-btn-outlined {
    padding: 10px 24px;
    font-size: 14px;
    margin-right: 12px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .legal-root {
    padding: 0 16px;
  }
  
  .legal-root h1 {
    font-size: 1.25rem;
  }
  
  .legal-root .cookie-btn-main,
  .legal-root .cookie-btn-outlined {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
}

/* Cookie notification message */
.cookie-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(30, 41, 59, 0.95);
  color: #cbd5e1;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  z-index: 10000;
  display: none;
  max-width: 280px;
  animation: slideIn 0.2s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .cookie-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    text-align: center;
  }
}
