To add `margin-top: 10px` to all `.category-parent-group` elements **except the first one**, you can use the `:not(:first-child)` pseudo-class in CSS:
.category-parent-group:not(:first-child) {
margin-top: 10px;
}
This will apply the margin to every `.category-parent-group` except the first one.
> ✅ No need for extra classes or JavaScript—pure CSS handles this efficiently.