/* Стиль "документ на листе Word" для юридических страниц */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
  background: #374151;
  font-family: 'Times New Roman', Times, Georgia, serif;
}

.doc-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.doc-page {
  background: #fff;
  color: #1a1a2e;
  max-width: 780px;
  width: 100%;
  padding: 3.5rem 4rem;
  border-radius: 2px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
  max-height: 85vh;
  overflow-y: auto;
}

/* Скроллбар */
.doc-page::-webkit-scrollbar { width: 8px; }
.doc-page::-webkit-scrollbar-track { background: #e5e7eb; }
.doc-page::-webkit-scrollbar-thumb { background: #9ca3af; border-radius: 4px; }
.doc-page::-webkit-scrollbar-thumb:hover { background: #6b7280; }

.doc-page h1 {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.doc-page h2 {
  font-size: 14px;
  font-weight: bold;
  margin: 1.5em 0 0.5em;
  text-align: left;
}

.doc-page p {
  margin-bottom: 0.4em;
  text-indent: 1.5em;
}

.doc-page p b,
.doc-page p:first-child { text-indent: 0; }

.doc-page ul {
  padding-left: 2.5em;
  margin-bottom: 0.5em;
}

.doc-page li {
  margin-bottom: 0.2em;
}

.doc-page a { color: #4338ca; }

.doc-page .meta {
  text-align: center;
  font-size: 13px;
  color: #555;
  margin-bottom: 2em;
  font-style: italic;
}
.doc-page .meta p { text-indent: 0; }

.doc-page .block {
  background: #f9f7ff;
  border: 1px solid #d8d0f0;
  border-radius: 4px;
  padding: 1.25em 1.5em;
  margin-bottom: 1.5em;
}
.doc-page .block h2 { margin-top: 0; color: #5b21b6; }
.doc-page .block p { text-indent: 0; }

.doc-page .requisites {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 1.25em 1.5em;
  margin-top: 1.5em;
}
.doc-page .requisites p { margin-bottom: 0.2em; text-indent: 0; }

.doc-page footer {
  margin-top: 2em;
  padding-top: 1em;
  border-top: 1px solid #d1d5db;
  text-align: center;
  font-size: 12px;
  color: #888;
}
.doc-page footer p { text-indent: 0; }

.doc-back {
  position: fixed;
  top: 1rem;
  left: 1rem;
  color: #c4b5fd;
  text-decoration: none;
  font-size: 13px;
  font-family: Arial, sans-serif;
  z-index: 10;
  background: rgba(55, 65, 81, 0.8);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}
.doc-back:hover { color: #e9d5ff; }

@media (max-width: 640px) {
  .doc-wrapper { padding: 0.75rem 0.25rem; }
  .doc-page {
    padding: 2rem 1.5rem;
    max-height: 92vh;
    font-size: 13px;
  }
}
