
.pricing-section {
    text-align: center;
    padding: 50px 0;
}

.heading {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.subheading {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 250px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-header {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: #fff;
    padding: 10px;
    font-size: 1.5em;
    border-radius: 8px 8px 0 0;
    text-transform: uppercase;
    font-weight: bold;
}

.card-price {
    font-size: 2em;
    margin: 20px 0;
    color: #333;
}

ul {
    list-style-type: none;
    margin-bottom: 20px;
}

ul li {
    margin: 10px 0;
    color: #666;
}

.buy-now {
    background-color: #ff416c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.buy-now:hover {
    background-color: #e63659;
}


/* Equal column stats section with hover animation */
.stats-section {
    background-color: #f72585;
}

.stat-box {
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    cursor: pointer;
}

.stat-box:hover {
    transform: scale(1.05);
    background-color: #333;
}

.stat-box i {
    color: #fff;
}

.footer h4 {
    color: #f72585;
}

.footer a:hover {
    color: #f72585;
    text-decoration: none;
}

