*{
    box-sizing: border-box;
  }
  /* Create two equal columns that floats next to each other */
  .row-ecommerce {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Aligns the columns centrally */
    align-items: center; /* Vertically centers the content */
    margin-bottom: 5px;
}

/* Each column takes up 50% of the space */
.column-ecommerce {
  
    background: #699f0a;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1; /* Equal width for columns */
    max-width: 100%; /* Ensures columns do not exceed parent width */
    margin-bottom: 5px;
}


#seo-roi-calculator {
    display: flex;
    justify-content: space-between;
}
#roi-form {
  
    background: #e4e2e2;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-right: 20px;
}
#roi-form label {
    font-weight: bold;
}
#roi-form input {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid rgb(255, 255, 255);
}
#calculate-roi {
    background-color: #699f0a;
    padding: 10px;
    border: none;
    cursor: pointer;
    color: #ffffff;
    border-radius: 4px;
}

#resultsROI {

    background: #699f0a;
    margin: 2px, 10px;
    color: #ffffff;
    font-size: 16px;

}


