.heading{
    text-align:center;
    font-size:32px;
    color:#00323d;
    margin-bottom:20px;
    font-weight:bold;
}

.table-wrapper{
    width:100%;
}

.price-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.price-table thead{
    background:#0787a5;
    color:#fff;
}

.price-table th,
.price-table td{
    padding:14px;
    border-bottom:1px solid #eee;
    text-align:left;
    font-size:14px;
}

.price-table tbody tr:hover{
    background:#fff4ec;
}

.price{
    color:#0b7a32;
    font-weight:bold;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

    .heading{
        font-size:24px;
    }

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

    .price-table thead{
        display:none;
    }

    .price-table tr{
        background:#fff;
        margin-bottom:15px;
        border-radius:10px;
        overflow:hidden;
        box-shadow:0 2px 10px rgba(0,0,0,0.08);
    }

    .price-table td{
        position:relative;
        padding-left:50%;
        text-align:right;
        border-bottom:1px solid #f0f0f0;
    }

    .price-table td::before{
        content:attr(data-label);
        position:absolute;
        left:15px;
        width:45%;
        text-align:left;
        font-weight:bold;
        color:#333;
    }
}

