.page__desc table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
    min-width: 600px;
}
.page__desc th, td {
    border: 1px solid #ccc;
    padding: 8px 12px;
    vertical-align: top;
}
/* Адаптация таблиц */
.table-section {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox .checkmark {
    width: 18px;
    height: 18px;
    min-width:18px;
    background-color: #f0f0f0;
    border-radius: 6px;
    position: relative;
    transition: background-color 0.3s ease;
    border: 1px solid #ccc;
}

.custom-checkbox input[type="checkbox"]:checked ~ .checkmark {
    background-color: #c71d3c;
    border-color: #c71d3c;
}

.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input[type="checkbox"]:checked ~ .checkmark::after {
    display: block;
}

.s-company__figure img {
    overflow: hidden;
    border-radius: 10px;
}