.price-navigation {
    margin-bottom: 32px;
    text-align: left;
}
.nav-link {
    color: #0066cc;
    font-size: 18px;
    margin: 0 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 3px;
    display: inline-block;
    transition: color 0.2s;
    text-decoration: none;
}
.nav-link:hover,
.nav-link:active {
    color: #dc3545;
    text-decoration: none;
}
.nav-link.active {
    color: #dc3545;
    text-decoration: none;
    background: none;
}
.accordion-container {
    max-width: 1000px;
    margin: 0 auto;
}
.accordion-section {
    background: #fff;
    margin-bottom: 32px;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1.5px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    border: none;
    transition: box-shadow 0.3s;
}
.accordion-header {
    background-color: #f8f9fa;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    min-height: 48px;
    transition: background-color 0.3s;
    justify-content: space-between;
}
.accordion-header:hover {
    background-color: #e9ecef;
}
.accordion-header h2 {
    margin: 0;
    font-size: 20px;
    color: #333;
    flex: 1;
}
/* Плавная анимация для +\- */
.accordion-sign {
    color: #dc3545;
    font-size: 32px !important;
    font-weight: bold;
    margin-left: 16px;
    transition: transform 0.8s cubic-bezier(.4,2,.6,1), color 0.2s;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    transform: rotate(0deg) scale(1);
}
.accordion-header.active .accordion-sign {
    transform: rotate(180deg) scale(1.15);
}
/* Плавное открытие/закрытие аккордеона */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(.4,2,.6,1), padding 0.8s cubic-bezier(.4,2,.6,1);
    background-color: #fff;
    padding: 0 20px;
}
.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0 15px 0;
    box-shadow: 0 2px 16px rgba(0,102,204,0.08);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s;
    table-layout: auto;
}
.price-table th, .price-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    white-space: nowrap;
}

.price-table td.columnName{
    white-space: wrap;
}
.price-table th {
    font-size: 16px;
    font-weight: bold;
    background: #f2f6fa;
}
.price-table tr:last-child td {
    border-bottom: none;
}
.price-table tr {
    transition: background 0.2s;
}
.price-table tr:hover {
    background-color: #f7faff;
}
.service-code {
    color: #000000;
    font-weight: normal;
    font-size: 16px;
    width: 1%;
}
.service-link {
    color: #0066cc;
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    transition: color 0.2s;
}
.service-link:hover,
.service-link:active {
    color: #dc3545;
    text-decoration: none;
}
.price {
    color: #000000;
    font-weight: normal;
    font-size: 16px;
    width: 1%;
}

.price .columnOldPrice {
    text-decoration: line-through;
}

.button-cell {
    text-align: right;
    padding-right: 30px !important;
    width: 1%;
}
.book-button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    min-height: 44px;
    min-width: 120px;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(255,102,0,0.15), 0 1.5px 4px rgba(0,0,0,0.05);
    display: inline-block;
}
.book-button:hover {
    background-color: #e65c00;
    box-shadow: 0 4px 16px rgba(255,102,0,0.18), 0 2px 8px rgba(0,0,0,0.07);
}

.columnName {
    font-size: 17px;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-sign, .accordion-content, .accordion-header, .price-table tr, .book-button {
    transition: none;
    }
}
.service-col {
    width: 60%;
}

@media( max-width:580px )
{
    .accordion-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* .section.content table.price-table {
        display: flex;
        flex-direction: column;
    }

    tr.tableHeaders {
        display: flex;
    }

    tbody tr {
        display: flex;
        flex-direction: column;
    }

    tr:not(.tableHeaders) td {
        width: 100%;
    } */


}
