.workflow_row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px; /* Optional spacing between columns */
}

.solutions__section .workflow_clomn {
  display: flex;
  flex-direction: column;
  align-items: center; /* Vertically align logo, text, and button */
  gap: 20px;
  flex: 6 1 ; 
  box-sizing: border-box;
  background: #f0f0f0;
    border-radius: 10px;
    padding: 28px 20px;
}

.solutions__section .workflow_clomn:hover {
   background: #fafafa;
}

.workflow_logo {
  flex-shrink: 0;
}

.workflow_content_cover {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.workflow_content {
  margin-bottom: 10px;
  text-align:center
}

.solutions__btn {
  margin-top: auto; /* Pushes button to bottom if needed */
  text-align:center;
}

@media screen and (max-width: 1024px) {
 /* .workflow_row .cover_div {  width: 100%; display: flex; flex-wrap: wrap; flex-direction: row; justify-content: center; gap:10px; flex: 3 2; }*/
    .workflow_row {  width: 100%; display: flex; flex-wrap: wrap; flex-direction: row; justify-content: center; gap:10px; flex: 3 2; }

}

@media screen and (max-width: 768px) {
  
   .workflow_row {
    display: flex;
    flex-direction:row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    flex 2 2;
  }
  
  .workflow_row {  width: 100%; display: flex; flex-direction: row; justify-content: center; gap:10px; flex: 3 2; }

  .workflow_logo {
    flex-shrink: 0;
    height: auto;
  }

  .workflow_content_cover {
    display: flex;
    flex-direction: column;
    justify-content: left;
    flex-grow: 1;
  }

  .workflow_content {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .solutions__btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    text-decoration: none;
  }

  .solutions__btn svg {
    flex-shrink: 0;
  }
}

@media screen and (max-width: 375px) {
 .workflow_row {  width: 100%; display: flex; flex-direction: column; justify-content: center; gap:20px; flex: 1; }

}


