.simple-page-section {
    min-height: 720px;
    padding: 35px 20px 60px;
    background: var(--light-gray);
}

.simple-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
    gap: 30px;
    align-items: start;
}

.simple-page-layout-full {
    grid-template-columns: minmax(0, 1fr);
}

.simple-page-body {
    min-width: 0;
}

.office-list,
.support-options {
    display: grid;
}

.office-list {
    gap: 40px;
}

.office-table {
    width: 100%;
    min-height: 300px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, .1) 0 8px 32px;
    table-layout: fixed;
}

.office-table th {
    width: 260px;
    padding: 24px 20px;
    font-weight: 400;
    text-align: left;
    vertical-align: top;
}

.office-table th span {
    display: block;
}

.office-table .office-state {
    margin-bottom: 2px;
    font-weight: 700;
}

.office-table td {
    height: 300px;
    padding: 0;
}

.office-map {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
}

.support-options {
    gap: 15px;
}

.support-panel {
    display: grid;
    min-height: 188px;
    padding: 20px;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, .1) 0 8px 32px;
    gap: 8px;
    text-align: center;
}

.support-panel h2 {
    margin: 0;
    color: var(--ink);
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
}

.support-phone-icon {
    margin-right: 7px;
    font-size: 22px;
}

.support-phone {
    color: var(--blue);
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    text-decoration: none;
}

.support-phone:hover,
.support-phone:focus-visible {
    color: var(--blue-hover);
}

.support-panel .button {
    width: 100%;
    align-self: end;
}

.consultation-calendar {
    display: block;
    width: 100%;
    min-height: 760px;
    border: 0;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, .1) 0 8px 32px;
}

@media (max-width: 991px) {
    .simple-page-section {
        min-height: 0;
        padding: 35px 0 50px;
    }

    .simple-page-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .office-list {
        gap: 25px;
    }

    .office-table,
    .office-table tbody,
    .office-table tr,
    .office-table th,
    .office-table td {
        display: block;
        width: 100%;
    }

    .office-table th {
        padding: 20px;
    }

    .office-table td,
    .office-map {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .support-panel h2 {
        font-size: 22px;
    }

    .support-phone {
        font-size: 26px;
    }
}
