body {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align items to the start of the cross axis */
    margin: 0;
  }
  
  .centered-content {
    text-align: center;
    margin-bottom: 200px;
  }
  
  .image-section {
    display: flex;
    flex-direction: column; /* Arrange items in a column */
    align-items: center;
    margin-top: 200px;
  }
  
  .image-container {
    width: 30%;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px; /* Adjust margin as needed */
  }
  