.price-table{
    text-align: center;
    border-radius: 0 0 25px 25px;
}

.price-table > .price-table-header{
    height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.price-table > .price-table-header > .package-name{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #000000;
}
.price-table > .price-table-header > .package-desc{
    margin-top: 10px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    letter-spacing: -0.03em;

    color: rgba(0, 0, 0, 0.8);
}

.price-table > .price-table-body{
    background-color: #fff;
    border-radius: 25px;
    border: 1px solid #EAEAEA;
    padding:10px;
}

.price-table > .price-table-body > .price{
    margin-top: 40px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    align-content: center;
}

.price-table > .price-table-body > .price > .line{
    height: 1px;
    background-color: rgb(36, 36, 36);
    width: 75%;
    align-self: center;
}

.price-table > .price-table-body > .price > .line:last-of-type::after{
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid rgb(0, 0, 0);
    display:block;
    margin:0 auto;
}

.price-table > .price-table-body > .price > .period{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.price-table > .price-table-body > .package-features-list{
    margin-top: 20px;
    padding: 0;
    list-style-type: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    letter-spacing: -0.03em;
}