
.pricing-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.pricing-card {
    background: rgb(101, 38, 177);
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s;
    font-size: 14px;
}
.pricing-card:hover {
    transform: scale(1.05);
}
.pricing-card h2 {
    color: #007bff;
    font-size: 20px;
}
.price {
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0;
}
ul {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 13px;
}
ul li {
    padding: 6px 0;
    
    display: flex;
    align-items: center;
    gap: 8px;
}
ul li span {
    color: green;
    font-size: 12px;
}
button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 18px;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}
button:hover {
    background: #0056b3;
}