/* Greenery Style Pricing Table */
.greenery-pricing-container {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.greenery-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.greenery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.greenery-card-header {
    background-color: #2a8f37;
    color: white;
    padding: 1.5rem;
    border-bottom: none;
}

.greenery-featured {
    border-top: 4px solid #4caf50;
    margin-top: -4px;
}

.greenery-ribbon {
    position: absolute;
    top: 10px;
    right: -25px;
    background: #4caf50;
    color: white;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: bold;
    width: 100px;
    text-align: center;
}

.greenery-price {
    color: #2a8f37;
    font-weight: 700;
    margin: 1.5rem 0;
}

.greenery-description {
    color: #555;
    line-height: 1.6;
}

.greenery-features li {
    padding: 0.5rem 0;
    color: #444;
}

.greenery-check {
    color: #4caf50;
    margin-right: 0.5rem;
}

.greenery-btn {
    background-color: #2a8f37;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: center;
    width: 80%;
}

.greenery-btn:hover {
    background-color: #1e7a2a;
    color: white;
    transform: scale(1.05);
}