.container {
    padding: 50px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}
h1 {
    font-size: 30px;
    color: #2b5006;
}
p {
    max-width: 700px;
    margin: 15px auto;
    line-height: 1.6;
    font-size: 1.1em;
}
.pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.card {
    background: #c5e7c5;
    padding: 25px;
    border-radius: 15px;
    width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1s ease;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
.card img{
    height: 350px;
    border-radius: 10px 10px 10px 10px;
    padding: 0;
}

.card h2 {
    color: #214101;
    font-size: 25PX;
}
.card p{
    margin-left: 10px;
    font-size: 15px;
    text-align: left;
    color: #214101;
}
.price {
    font-size: 22PX;
    margin: 15px 0;
    color: #214101;
}

