.bg-color-body {
    background-color: #DFDBE4;
  }
  
  .bottom-footer {
    background-color: #DFDBE4;
  }

  body, html {
    margin: 0;
    padding: 0;
    width: 100%; /* Ensure the body and html elements span the full width */
    height: 100%; /* Ensure the body and html elements span the full height */
    text-align:center;
    float:left;
    position:relative;
    padding:50px;
    font-family: 'Poppins', sans-serif;
  }

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .content {
    display: flex;
    justify-content: space-between; /* Space between text and image */
    align-items: flex-start; /* Align items to the top */
    margin-bottom: 0px; /*space b/t text and images at the bottom */
  }
  
  .text {
    width: 60%; /* Set initial width of the text section */
  }
  
  .image {
    width: 40%; /* Set initial width of the image section */
  }
  
  .image img {
    max-width: 100%; /* Ensure image fits within its container */
  }
  
  .images-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .images-row img {
    max-width: 250px;
    margin: 0 5px 10px;
  }
