.pricing-table {
    display: flex;
    gap: 15px;
}
.pricing-table .title h3 {
    color: #9b3e41;
}
.pricing-table ._table .pricing {
    font-size: 43px;
}
.pricing-table ._table .benefits {
    color: #161616;
}
.pricing-table ._table p {
    color: #303030;
}
.pricing-table ._table {
    position: relative;
    width: 268px;
    border: 2px solid #3030300d;
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s all ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pricing-table ._table:hover {
    background-color: #9b3e41;
    transition: 0.3s all ease-in-out;
    color: #ffff;
}
.pricing-table ._table:hover h3,
.pricing-table ._table:hover p,
.pricing-table ._table:hover .benefits {
    color: #ffff;
}

.pricing-table ._table .buttons {
    bottom: 1px;
    padding: 12px 0px;
    display: flex;
    justify-content: center;
    gap: 6px;
    width: 86%;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}
.pricing-table ._table .buttons .view-pricing {
}
.pricing-table ._table .buttons .buy-package {
    background: #b62c32;
    width: 100%;
    padding: 16px 0px;
    display: block;
    border-radius: 12px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    text-align: center;
}
.pricing-table ._table ul {
    list-style: none;
}
.pricing-table ._table ul li::before {
    content: "✓";
    padding-right: 8px;
}

.pricing-table ._table ul li::before:hover {
    content: "✓";
    padding-right: 8px;
    color: #fff;
}

/* Mobile styles */
@media only screen and (max-width: 780px) {
    .pricing-table {
        flex-direction: column;
        align-items: center;
    }

    .pricing-table ._table {
        width: 100%;
        margin-bottom: 15px;
    }

    .pricing-table ._table .buttons {
        width: 100%;
    }

    .pricing-table .title h3,
    .pricing-table ._table .pricing,
    .pricing-table ._table .benefits,
    .pricing-table ._table p,
    .pricing-table ._table .buttons .buy-package {
        text-align: center;
    }
}
