  /* Основной контейнер */
  .npkzna-terms-wrapper {
    --zn-blue: var(--ast-global-color-1, #43519f);
    --zn-orange: var(--ast-global-color-0, #e8402b);
    max-width: --bardnwn-container;
    margin: 20px auto 40px auto;
    font-family: inherit;
    color: #334155;
    padding: 0 20px;
  }

  /* Заголовок страницы */
  .npkzna-terms-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 3px solid var(--zn-orange);
  }
  .npkzna-terms-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--zn-blue);
    margin-bottom: 12px;
  }
  .npkzna-terms-meta {
    font-size: 0.9rem;
    color: #64748b;
  }
  .npkzna-terms-meta strong {
    color: var(--zn-blue);
  }

  /* Навигация по разделам */
  .npkzna-terms-nav {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 32px;
    position: sticky;
    top: 20px;
    z-index: 10;
  }
  .npkzna-terms-nav h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--zn-blue);
    margin-bottom: 16px;
  }
  .npkzna-terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px;
  }
  .npkzna-terms-nav a {
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }
  .npkzna-terms-nav a::before {
    content: "•";
    color: var(--zn-orange);
    font-weight: 800;
  }
  .npkzna-terms-nav a:hover {
    color: var(--zn-blue);
  }

  /* Основной контент */
  .npkzna-terms-content {
    background: #ffffff;
  }
  .npkzna-terms-section {
    margin-bottom: 32px;
    scroll-margin-top: 100px;
  }
  .npkzna-terms-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--zn-blue);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
  }
  .npkzna-terms-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 20px 0 12px 0;
  }
  .npkzna-terms-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #475569;
  }
  .npkzna-terms-section ul,
  .npkzna-terms-section ol {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 24px;
    color: #475569;
  }
  .npkzna-terms-section li {
    margin-bottom: 8px;
  }
  .npkzna-terms-section strong {
    color: var(--zn-blue);
  }

  /* Выделение важных блоков */
  .npkzna-terms-alert {
    background: #fff7ed;
    border-left: 4px solid var(--zn-orange);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
  }
  .npkzna-terms-alert p {
    margin: 0;
    color: #7c2d12;
  }

  .npkzna-terms-info {
    background: #f0f9ff;
    border-left: 4px solid var(--zn-blue);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
  }
  .npkzna-terms-info p {
    margin: 0;
    color: #0c4a6e;
  }

  /* Реквизиты */
  .npkzna-terms-requisites {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-top: 24px;
  }
  .npkzna-terms-requisites h3 {
    margin-top: 0;
    color: var(--zn-blue);
  }
  .npkzna-requisite-item {
    display: flex;
    margin-bottom: 8px;
    font-size: 0.9rem;
  }
  .npkzna-requisite-label {
    font-weight: 600;
    color: #475569;
    min-width: 180px;
    flex-shrink: 0;
  }
  .npkzna-requisite-value {
    color: #1e293b;
  }

  /* Кнопка печати */
  .npkzna-terms-actions {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 100;
  }
  .npkzna-print-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--zn-blue);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(67, 81, 159, 0.3);
    transition: all 0.2s ease;
  }
  .npkzna-print-btn:hover {
    background: var(--zn-orange);
    transform: translateY(-2px);
  }

  /* Адаптивность */
  @media (max-width: 768px) {
    .npkzna-terms-header h1 { font-size: 1.5rem; }
    .npkzna-terms-nav { position: static; }
    .npkzna-terms-nav ul { grid-template-columns: 1fr; }
    .npkzna-terms-actions { 
      position: static; 
      margin-top: 32px;
      text-align: center;
    }
    .npkzna-print-btn {
      display: inline-flex;
    }
    .npkzna-requisite-item {
      flex-direction: column;
    }
    .npkzna-requisite-label {
      margin-bottom: 4px;
    }
  }

  /* Стили для печати */
  @media print {
    .npkzna-terms-nav,
    .npkzna-terms-actions {
      display: none;
    }
    .npkzna-terms-wrapper {
      max-width: 100%;
      padding: 0;
    }
    .npkzna-terms-section {
      break-inside: avoid;
    }
  }