/* Юридические страницы — стиль совпадает с главной selparf.ru */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:    #f5914f;
  --orange-h:  #e07d3a;
  --black:     #000000;
  --white:     #ffffff;
  --text-dark: #333333;
  --gray-bg:   #eeeeee;
  --font:      'Helvetica Neue', Arial, sans-serif;
  --nav-h:     68px;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
}

/* ── Навигация (идентична главной) ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 40px;
  background: #1a1a1a;
}

.nav-logo {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-back {
  flex-shrink: 0;
  margin-left: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-back:hover { color: var(--white); }

/* ── Контент ── */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.legal-wrap h1 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.2;
}

.legal-edition {
  font-size: 13px;
  color: #999;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.legal-section {
  margin-bottom: 28px;
}

.legal-section h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.legal-section ul,
.legal-section ol {
  padding-left: 22px;
  margin-bottom: 10px;
}

.legal-section ul li,
.legal-section ol li {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.legal-section a {
  color: var(--orange);
  text-decoration: none;
}

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

/* ── Футер (идентичен главной) ── */
footer {
  background: #111;
  padding: 32px 24px;
  text-align: center;
}

.footer-inner { max-width: 960px; margin: 0 auto; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-legal a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--white); }

.footer-info {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}

/* ── Адаптив ── */
@media (max-width: 640px) {
  .nav { padding: 0 16px; }
  .nav-logo { font-size: 13px; letter-spacing: 0.08em; }
  .legal-wrap { padding: 40px 16px 60px; }
}
