.pricing {
    padding: 50px 0;
    background-color: #fff;
}

.container {
    width: 100%;
    margin: 0 auto;
}

.pricing-table {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    flex: 1 1 30%;
    max-width: 500px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border-color: #007bff;
}

.pricing-card.featured:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.pricing-title {
    font-size: 2.0em;
    margin-bottom: 20px;
    color: #007bff;
}

.price {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1em;
    color: #555;
}

.features li {
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}
