/* * {
        box-sizing: border-box;
        font-family: Arial, Helvetica, sans-serif;
    }

    body {
        margin: 0;
        padding: 40px 20px;
        background: #f7f7f7;
        color: #333;
    } */

    .price-h1 {
        text-align: center;
        margin-bottom: 5px;        
    }

    .subtitle {
        text-align: center;
        color: #777;
        margin-bottom: 40px;
    }

    .pricing-wrapper {
        max-width: 1100px;
        margin: auto;
        display: flex;
        gap: 40px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 15px;
    }

    /* ===== Pricing Card ===== */
    .pricing-card {
        background: #fff;
        border-radius: 16px;
        padding: 30px;
        width: 100%;
        max-width: 420px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        border: 3px solid transparent;
        background-image:
            linear-gradient(#fff, #fff),
            linear-gradient(90deg, #22c55e, #3b82f6, #f59e0b);
        background-origin: border-box;
        background-clip: padding-box, border-box;
    }

    .price {
        font-size: 40px;
        font-weight: bold;
        text-align: center;
        color: #4c4c4c;
    }

    .price span {
        font-size: 18px;
        color: #666;
    }

    .btn-price {
        display: block;
        width: 100%;
        margin: 10px 0 17px;
        padding: 5px;
        background: #ffd84d;
        border: none;
        border-radius: 10px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        text-decoration: none;
        color: #000;
        text-align: center;
    }

    .btn-price:hover {
        background: #ffcc00;
    }

    .features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .features li {
        margin-bottom: 0px;
        padding-left: 26px;
        position: relative;
        font-size: 15px;
        color: #555;
    }

    .features li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        color: #22c55e;
        font-weight: bold;
    }

    /* ===== Preview Card ===== */
    .preview-card {        
        width: 100%;
        max-width: 360px;        
    }

    .preview-img {
        height: 102px;
        width: 100%;
        background: url("static/images/Capture66.png") center/cover no-repeat;
    }
    .user-map{
        position: absolute;
        height: 61px;
        width: 50px;
        margin-left: 285px;
        background: url(static/images/Capture77.PNG) center / cover no-repeat;
    }
    .preview-img-wraper{
        width: 100%;
    }

    .preview-list{
        list-style: none;
        margin: 0px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        overflow: hidden;
        background: #fff;
        border-radius: 20px;
    }

    .preview-upper{
            width: 280px;
        margin-left: 35px;
        margin-bottom: 0px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        background: #fff;
        border-radius: 20px 20px 0px 0px;
        overflow: hidden;
    }

    .preview-list li{
        padding:10px 25px;
        color: #555;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
    }
    .preview-list li .material-symbols-outlined{
        color:#3b82f6
    }

    .preview-list li:not(:last-child) {
        border-bottom: .12rem solid #e5e5e5
    }

    

    .preview-body {
        padding: 20px;
    }

    .business-name {
        font-weight: bold;
        font-size: 16px;
    }

    .stars {
        color: #fbbf24;
    }

    .user-details{
        padding: 15px;
            border-bottom: 1px solid #dadada;
    }

    .user-tab{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .user-tab .user-tablist{
        color: #555;
        padding: 5px;
        width: 50%;
        text-align: center;
        font-weight: bold;
    }

    .user-tab .user-tablist.active{
        color: #3b82f6;
    }
    .user-tab .user-tablist.active::after{
        position: absolute;
        width: 50%;
        height: 2px;
        background-color: #3b82f6;
    }

    .info {
        display: flex;
        align-items: center;
        font-size: 14px;
        color: #555;
        margin-top: 12px;
    }

    .info span {
        margin-left: 10px;
    }

    .divider {
        height: 8px;
    width: 70%;
    background: #eee;
    margin: 1px 0;
    border-radius: 20px;
    }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
        .pricing-wrapper {
            flex-direction: column;
        }
    }

