.plan-section {
    background-color: #e1e5e9;
}

.heading{
    color: #128538;
}

.plan-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #128538;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.plan-icon {
    font-size: 30px;
    color: #128538; /* soft solar orange */
}
.highlight .plan-icon {
    color: #128538;
}
.plan-card ul li i {
    color: #128538;
}
.plan-card:hover .plan-icon {
    color: #0f6f2e; /* darker green on hover */
}

/* List styling */
.plan-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

