/* Equal height and alignment for Loan Product boxes */
.loan-products-row .vc_column_container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.loan-products-row .vc_column-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.loan-products-row .wpb_wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Optional: make all boxes same height and add consistent spacing */
.loan-products-row .vc_column_container > .vc_column-inner {
    background: #ffffff; /* keep background consistent */
    border: 1px solid #ddd; /* light border */
    padding: 20px;
    min-height: 350px; /* adjust height */
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}