 /* Контейнер и заголовок в стиле about */
    .container {
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .container > h1 {
      margin-bottom: 24px;
      color: #0073e6;
      font-size: 1.8rem;
      text-align: center;
    }

   
    .subdivisions-table {
      margin: 32px 0 48px;
      overflow: hidden;       
      overflow-x: auto;     
      border-radius: 30px;
      box-shadow: 0 2px 16px rgba(0, 115, 230, 0.07);
      background: #fff;
    }

    .subdivisions-table table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      min-width: 600px;
      font-size: 16px;
      background: #fff;
      overflow: hidden;
    }

    /* скругляем заголовки */
    .subdivisions-table thead tr {
      background: #0073e6;
    }
    .subdivisions-table th:first-child {
      border-top-left-radius: 30px;
    }
    .subdivisions-table th:last-child {
      border-top-right-radius: 30px;
    }
    .subdivisions-table th,
    .subdivisions-table td {
      padding: 10px 14px;
      text-align: left;
      vertical-align: top;
    }
    .subdivisions-table th {
      color: #fff;
      font-weight: 700;
      font-size: 17px;
      letter-spacing: 0.02em;
      border-right: 1px solid #176dc3;
      border-bottom: none;
    }
    .subdivisions-table th:last-child,
    .subdivisions-table td:last-child {
      border-right: none;
    }
    .subdivisions-table tbody tr {
      border-bottom: 1px solid #e4eaf1;
      transition: background 0.18s;
    }
    .subdivisions-table tbody tr:nth-child(even) {
      background: #f3f8fd;
    }
    .subdivisions-table tbody tr:hover {
      background: #eaf4fd;
    }
    .subdivisions-table td {
      color: #222;
      font-weight: 500;
      font-size: 15px;
      border-right: 1px solid #e4eaf1;
    }
    .subdivisions-table tr:last-child td {
      border-bottom: none;
    }

    /* Ссылки внутри таблицы */
    .subdivisions-table a {
      color: #0073e6;
      text-decoration: none;
    }
    .subdivisions-table a:hover {
      text-decoration: underline;
    }

    /* Кнопка «На главную» */
    .btn-back {
      display: inline-flex;
      align-items: center;
      margin: 24px 0 24px 16px;
      padding: 10px 16px;
      background: #0073e6;
      color: #fff;
      text-decoration: none;
      border-radius: 40px;
      font-weight: 600;
      font-size: 16px;
      transition: background 0.2s;
    }
    .btn-back:hover {
      background: #005bb5;
    }
    .btn-back .btn-arrow {
      margin-right: 8px;
      display: inline-block;
      transition: transform 0.2s;
    }
    .btn-back:hover .btn-arrow {
      transform: translateX(-4px);
    }

    /* Адаптив */
    @media (max-width: 800px) {
      .subdivisions-table table {
        font-size: 15px;
        min-width: 480px;
      }
      .subdivisions-table th,
      .subdivisions-table td {
        padding: 8px 10px;
      }
    }