.pricing-section{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
    padding:40px 20px;
    background:#f5f5f5;
}

.pricing-card{
    width:260px;
    background:#fff;
    border: 2px solid #ffd200;
    border-radius:8px;
    padding:25px 20px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    transition:0.3s;
}

.pricing-card:hover{
    transform:translateY(-5px);
}

.pricing-card.active{
    border-color: #ffd200;
}

.pricing-card h2{
    text-align:center;
    font-size: 20px;
    line-height:1.3;
    margin-bottom: 20px;
}

.old-price{
    text-align:center;
    text-decoration:line-through;
    color:#576673;
    font-size:18px;
}

.new-price{
    text-align:center;
    color: #576673;
    font-size:42px;
    font-weight:bold;
    margin:10px 0;
}

.desc{
    text-align:center;
    font-size:14px;
    color:#555;
    line-height:1.6;
}

.btn-price{
    display:block;
    text-align:center;
    background: #ffd200;
    color: #576673;
    text-decoration:none;
    padding:12px;
    margin:25px 0;
    border-radius:5px;
    font-weight:bold;
    transition:0.3s;
}

.btn-price:hover{
    background:#576673;
}

.apps{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin:20px 0;
}

.apps img{
    width:42px;
    height:42px;
}

.pricing-card h3{
    font-size:18px;
    margin:20px 0 10px;
}

.pricing-card ul{
    padding-left:20px;
}

.pricing-card ul li{
    margin-bottom:12px;
    line-height:1.5;
    color: #576673;
}

@media(max-width:992px){
    .pricing-section{
        flex-direction:column;
        align-items:center;
    }

    .pricing-card{
        width:95%;
    }
}