.step-card {
        background: white;
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        display: flex;
        gap: 20px;
        align-items: flex-start;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .step-card:hover {
        /* transform: translateY(-2px); */
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    }

    .step-number {
        background: linear-gradient(135deg, #e91e8c 0%, #ff2da0 100%);
        color: white;
        width: 56px;
        height: 56px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: bold;
        flex-shrink: 0;
    }

    .step-content {
        flex: 1;
    }

    .step-title {
        font-size: 18px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 8px;
    }

    .step-description {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
    }

    .cta-button {
        background: linear-gradient(135deg, #e91e8c 0%, #ff2da0 100%);
        color: white;
        border: none;
        padding: 10px 48px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
        display: block;
        margin: 0 auto;
        box-shadow: 0 10px 30px rgba(255, 85, 130, 0.4);
        transition: all 0.3s ease;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(255, 85, 130, 0.5);
    }

    .cta-button:active {
        transform: translateY(0);
    }

    /* Responsive Design */
    @media (max-width: 640px) {
        .step-card {
            flex-direction: row;
            align-items:center;
            padding: 20px;
        }

        .step-number {
            width: 48px;
            height: 48px;
            font-size: 20px;
        }

        .step-title {
            font-size: 18px;
        }

        .step-description {
            font-size: 14px;
        }

        .cta-button {
            width: 100%;
            padding: 16px 32px;
            font-size: 16px;
        }
    }

    .bottom-border{
        border-bottom:1px solid rgb(255,255,255,0.2);
    }
    table tbody tr:last-child {
        border-bottom: none; /* Removes the bottom border of the last row */
    }
    .text-grey{
        color: var(--text-color-3) !important;
        font-weight: 500;
    }
    th, td {
        padding: 15px !important;
    }
    .w-40{
        width:40%!important
    }
    .w-20{
        width:20%!important
    }
    .w-10{
        width:10%!important
    }
    .fs-7{
        font-size:14px !important;
    }
    .ps-plan-row {width: 100%;}
    .ps-grey-text {color:#b49baa; font-size:14px; font-weight:400;}
    .pc-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
    .pc-features { display: flex; gap: 8px; flex-wrap: wrap; /*margin-bottom: 20px;*/ }
    .pc-feat { display: flex; align-items: center; gap: 6px; background: #2c1c23; border: 1px solid #ffffff33; border-radius: 8px; padding: 7px 18px; font-size: 12px; color: #b49baa; }
    .ps-try-badge {background: #e91e8c; color: #fff; font-size: 11px; padding: 3px 9px; border-radius: 5px; margin-left: 6px;}
    @media (max-width: 480px) {
        .step-card {
            padding: 16px;
            margin-bottom: 12px;
        }

        .step-number {
            width: 44px;
            height: 44px;
            font-size: 18px;
        }
        .pc-feat { gap: 5px; padding: 7px 13px;}
    }