:root {
  --legal-max: 760px;
}

.legal-page-body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink, #10201d);
  background: linear-gradient(180deg, #f5f7f2 0%, #eef3ee 100%);
  font-family: "DM Sans", system-ui, sans-serif;
}

.legal-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(16, 32, 29, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
  font: 700 1rem "Manrope", sans-serif;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  flex: 1;
}

.legal-nav a {
  color: var(--muted, #5d6f6a);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--teal, #087d69);
}

.legal-lang {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
}

.legal-lang .lang-link {
  color: var(--muted, #5d6f6a);
  text-decoration: none;
  font-weight: 700;
}

.legal-lang .lang-link.active,
.legal-lang .lang-link:hover {
  color: var(--teal, #087d69);
}

.legal-main {
  padding: 2.5rem 1.25rem 3rem;
}

.legal-document {
  max-width: var(--legal-max);
  margin: 0 auto;
  padding: 2rem 1.75rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(16, 32, 29, 0.08);
  box-shadow: 0 18px 50px rgba(16, 32, 29, 0.06);
}

.legal-document-header h1 {
  margin: 0 0 0.5rem;
  font: 800 clamp(1.6rem, 4vw, 2.2rem) "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

.legal-updated {
  margin: 0 0 1.75rem;
  color: var(--muted, #5d6f6a);
  font-size: 0.92rem;
}

.legal-section + .legal-section {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(16, 32, 29, 0.08);
}

.legal-section h2 {
  margin: 0 0 0.85rem;
  font: 700 1.05rem "Manrope", sans-serif;
  color: var(--ink, #10201d);
}

.legal-section p {
  margin: 0 0 0.85rem;
  line-height: 1.65;
  color: #2a3f3a;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.site-legal-footer {
  padding: 1.5rem 1.25rem 5.5rem;
  border-top: 1px solid rgba(16, 32, 29, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.site-legal-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted, #5d6f6a);
}

.site-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
}

.site-legal-links a {
  color: var(--teal, #087d69);
  text-decoration: none;
  font-weight: 600;
}

.site-legal-links a:hover {
  text-decoration: underline;
}

.site-legal-footer .legal-note {
  max-width: 52ch;
  line-height: 1.5;
}

footer .site-legal-links {
  width: 100%;
  margin: 0.35rem 0 0.15rem;
}

footer .site-legal-links a {
  color: var(--teal, #087d69);
  font-weight: 600;
  text-decoration: none;
}

footer .site-legal-links a:hover {
  text-decoration: underline;
}

footer .footer-contact {
  color: var(--teal, #087d69);
  font-weight: 600;
  text-decoration: none;
}

footer .footer-contact:hover {
  text-decoration: underline;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 1rem;
}

.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: var(--deep, #0c2521);
  color: #d7e5e0;
  box-shadow: 0 12px 40px rgba(12, 37, 33, 0.28);
}

.cookie-consent-inner p {
  margin: 0;
  flex: 1 1 280px;
  line-height: 1.5;
  font-size: 0.92rem;
}

.cookie-consent-inner a {
  color: var(--lime, #c8f55a);
  font-weight: 600;
}

.login-form label.register-terms {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.25rem 0 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted, #5d6f6a);
}

.register-terms input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.register-terms a {
  color: var(--teal, #087d69);
  font-weight: 600;
}

.login-legal-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 32, 29, 0.08);
  text-align: center;
}

.login-legal-footer .site-legal-links {
  justify-content: center;
  font-size: 0.82rem;
}

@media (max-width: 720px) {
  .legal-header {
    padding: 0.85rem 1rem;
  }

  .legal-document {
    padding: 1.35rem 1.1rem;
  }

  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }
}
