.prices h2 {
    font-size: 36px;
    line-height: 48px;
    color: var(--title-color);
    margin-bottom: 28px;
}
.prices .btn {
    display: block;
    max-width: 1088px;
    font-size: 36px;
    line-height: 46px;
    border-radius: 24px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 80px;
    margin-bottom: 60px;
}
.prices__list {
    width: 100%;
    border-collapse: collapse;
}
.prices__list .desktop-hidden {
    display: none;
}
.prices__list thead {
    color: #0CA4D4;
    font-weight: 600;
}
.prices__list tr {
    border-bottom: 1px solid #0CA4D4;
}
.prices__list td {
    width: 100%;
    padding: 12px 0;
    vertical-align: baseline;
}
.prices__list td:first-child {
    padding-right: 40px;
}
.prices__list td:last-child {
    min-width: 180px;
}

@media screen and (max-width: 600px) {
    .prices h2 {
        font-size: 21px;
        line-height: 27px;
    }
    .prices__list tr {
        display: flex;
        flex-direction: column;
    }
    .prices__list .desktop-hidden {
        display: inline-block;
    }
    .prices__list thead td {
        padding: 4px 0;
    }
    .prices__list td {
        padding: 8px 0;
    }
    .prices .btn {
        padding: 40px 16px;
        font-size: 21px;
        line-height: 27px;
        text-align: left;
        margin-bottom: 32px;
    }
}
