<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: left;
    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;
}



