It’s pretty hard work, you have to target each row that needs to be bigger to line up with each other, it would be something like:
.pricing-table-row:nth-child(6), .pricing-table-row:nth-child(14), .pricing-table-row:nth-child(18) {
min-height: 65px;
}
However you need to repeat it for quite a few of your rows.
Do you have css knowledge?
– Kyle