.price-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h4 {
    color: rgb(150, 150, 150);
    font-size: 22px;
    text-align: center;
}

.price-group-name, .price-group-list {
    width: 65%;
    text-align: center;
}

.price-group-list {
    font-size: 25px;
    border-bottom: 1px solid gray;
    width: 65%;
}

.price-group-list.no-bottom {
    border-bottom: none;
    margin-bottom: 30px;
}

.item-name-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px 15px 15px;
    color: #2ea1b1;
}

.item-description {
    text-align: left;
    padding: 0px 15px 20px 15px;
    font-size: 18px;
    font-style: italic;
    color: #dfe2e8;
    max-width: 600px;
    line-height: 1.5;
}

@media (max-width: 1080px) {

    .price-group {
        width: 100%;
        align-items: stretch;
    }

    .price-group-name {
        width: 100%;
        box-sizing: border-box;
        padding: 0 10px;
        font-size: 20px;
        line-height: 1.4;
    }

    .price-group-list {
        width: 100%;
        box-sizing: border-box;
        font-size: 19px;
    }

    .item-name-price {
        align-items: flex-start;
        gap: 15px;
        padding: 15px 10px 10px 10px;
    }

    .item-name {
        flex: 1;
        min-width: 0;
        text-align: left;
        line-height: 1.4;
    }

    .item-price {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .item-description {
        padding: 0 10px 18px 10px;
        font-size: 16px;
        line-height: 1.6;
        max-width: none;
    }

    .price-group-list.no-bottom {
        margin-bottom: 25px;
    }

    .table-separator {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .bottom-note {
        padding: 0 5px;
        text-align: center;
    }

    .bottom-note p {
        line-height: 1.6;
        font-size: 15px;
    }

    .bottom-note a {
        display: inline-block;
        margin-top: 10px;
        line-height: 1.5;
    }
}