.h1-pricing-plan {
    text-align: center;
    margin-top: 2rem;
    font-size: 2.5rem;
}

.p-pricing-plan {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.5rem;
}

.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 50px auto 50px;
    padding: 0 20px 50px 0;
}

.pricing-table {
    width: 600px; /* wider horizontal card */
    padding: 25px 40px;
    background: linear-gradient(135deg, #f9fdfa, #e0f0ed);
    border: 1px solid #c7ded6;
    border-radius: 10px;
    box-shadow: 1px 2px 20px 8px rgba(126, 151, 161, 0.6);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-table:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.pricing-table .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.pricing-table .content ul {
    list-style-type: none;
    margin: 0 20px 0 0;
    padding-left: 20px;
    flex: 1;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
}

.pricing-table .content ul li {
    margin: 12px 0;
    display: flex;
    align-items: center;
}

.pricing-table .content ul li i.fa-circle-check {
    color: #54d994;
    margin-right: 10px;
}

.pricing-table .content ul li i.fa-circle-xmark {
    color: #e23c3c;
    margin-right: 10px;
}

.pricing-table .content .buy-now {
    flex-shrink: 0;
    margin-left: 20px;
    background: linear-gradient(to right, #003366 10%, #57b894 90%);
    border-radius: 50px;
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.pricing-table .btn.round {
    position: relative;
    display: inline-block;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    border-radius: 50px;
    border: none;
    color: #fff;
    overflow: hidden;
    z-index: 1;
    background: transparent; /* important */
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease; /* ADD this */
}

.pricing-table .btn.round::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50px;
    background: linear-gradient(to right, #003366 10%, #57b894 90%);
    z-index: -1;
    transition: background 0.4s ease;
}

.pricing-table .btn.round:hover::after {
    background: linear-gradient(to right, #57b894 10%, #003366 90%);
}


.pricing-table .btn.round:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .wrapper {
        justify-content: center;
    }
    .pricing-table {
        width: 100%;
        flex-direction: column;
        padding: 30px;
    }
    .pricing-table .content {
        flex-direction: column;
        align-items: flex-start;
    }
    .pricing-table .content .buy-now {
        margin-left: 0;
        margin-top: 20px;
    }
    .pricing-table .content ul {
        margin: 0;
        padding-left: 0;
    }
}
