/* Make all service cards equal height */
.service-us-grids {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}

.service-us-grids .grid {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 33.333%; /* 3 per row */
    padding: 30px;
    box-sizing: border-box;
}

/* Ensure content stretches */
.service-us-grids .grid p {
    flex-grow: 1;
}

/* Make button stay aligned at bottom */
.service-us-grids .grid a {
    margin-top: 15px;
}