<style>
.sppb-panel-collapse {
  display: none;
}

/* плавность */
.sppb-panel-body {
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* фикс стрелки */
.sppb-panel-heading[aria-expanded="true"] .fa-chevron-right {
  transform: rotate(90deg);
  transition: 0.2s;
}

.sppb-panel-heading .fa-chevron-right {
  transition: 0.2s;
}
</style>



/* ОБЩИЙ КОНТЕЙНЕР */
.accordion_bl margin: 3px 0;.accordion_blok {
}

/* БЛОК */
.accordion-item_blok {
    margin-bottom: 12px;
    border: 1px solid #dbe4ea;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

/* ЗАГОЛОВОК */
.accordion-title_blok {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #0078d4;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    text-align: -webkit-center;
    transition: background .3s ease;
}

.accordion-title_blok:hover {
    background: #0063b1;
}

/* ИКОНКА */
.accordion-icon_blok {
    font-size: 24px;
    line-height: 1;
    transition: transform .3s ease;
}

/* ОТКРЫТОЕ СОСТОЯНИЕ */
.accordion-item_blok.active_blok .accordion-icon_blok {
    transform: rotate(45deg);
}

/* КОНТЕНТ */
.accordion-content_blok {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    background: #fff;
}

.accordion-content-inner_blok {
    padding: 20px;
    color: #333;
    line-height: 1.6;
}
    width: 100%;
	
}







.info-section {
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px 10px;
    margin: 20px 0;
}

.info-column {
    padding: 15px 25px;
}

/* Вертикальные разделители на ПК */
@media (min-width: 992px) {
    .info-column:not(:last-child) {
        border-right: 1px solid #d9d9d9;
    }
}

/* Горизонтальные разделители на мобильных */
@media (max-width: 991px) {
    .info-column {
        border-bottom: 1px solid #d9d9d9;
        padding-bottom: 25px;
        margin-bottom: 20px;
    }

    .info-column:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 15px;
    }
}

.info-column h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #005baa;
    font-weight: 600;
}

.info-column p {
    margin-bottom: 12px;
}

.info-phone {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #005baa;
}

.info-column a {
    color: #005baa;
    text-decoration: none;
}

.info-column a:hover {
    text-decoration: underline;
}




.responsive-table-wrapper {
  overflow-x: auto; /* горизонтальная прокрутка только здесь */
  width: 100%;
}

.admin-procedures-table {
  width: 100%;
  border-collapse: collapse;
  font-size: inherit; /* наследует размер шрифта сайта */
  line-height: inherit;
  color: inherit;
}

.admin-procedures-table th,
.admin-procedures-table td {
  border: 1px solid #ccc;
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

.admin-procedures-table th {
  background-color: #f5f5f5;
  position: sticky;
  top: 0;
  z-index: 1;
}

/* Заголовки разделов (ЖИЛИЩНЫЕ, ТРУД, ЗДРАВООХРАНЕНИЕ) */
.admin-procedures-table .section-header {
  background-color: #eef;
  font-weight: bold;
  text-align: center;
  border-top: 2px solid #333;
}

/* Адаптивные пропорции колонок (можно подстроить под ваши данные) */
@media (min-width: 768px) {
  .admin-procedures-table th:nth-child(1),
  .admin-procedures-table td:nth-child(1) { width: 18%; }

  .admin-procedures-table th:nth-child(2),
  .admin-procedures-table td:nth-child(2) { width: 22%; }

  .admin-procedures-table th:nth-child(3),
  .admin-procedures-table td:nth-child(3) { width: 30%; }

  .admin-procedures-table th:nth-child(4),
  .admin-procedures-table td:nth-child(4) { width: 8%; }

  .admin-procedures-table th:nth-child(5),
  .admin-procedures-table td:nth-child(5) { width: 12%; }

  .admin-procedures-table th:nth-child(6),
  .admin-procedures-table td:nth-child(6) { width: 10%; }
}

