.container2 {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .section2 {
    width: 45%;
    padding: 20px;
  }
  
  .section2 p {
    font-size: 18px;
  }
  
  .section2 img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: #feb900;
  }
  
  .section2:nth-child(odd) {
    order: 1;
  }
  
  .section2:nth-child(even) {
    order: 2;
  }
  
  .section2 h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #3b3b3b;
  }
  
  .section2:first-child {
    background-color: #f7f7f7;
  }
  
  .section2:last-child {
    background-color: #f7f7f7;
  }
  
  .section2:first-child h2 {
    color: #003366;
  }
  
  .section2:last-child h2 {
    color: #003366;
  }
  
  .section2:first-child img {
    border: 5px solid #feb900;
  }
  .section2:last-child img {
    border: 5px solid #feb900;
  }

/* Styles for container2 */
.container2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
  }
  
  /* Styles for the title */
  .title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
  }
  
  /* Styles for the image and text containers */
  .image-container {
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
  }
  
  /* Styles for the images */
  .image-container img {
    max-width: 100%;
    height: auto;
  }
  
  /* Styles for the titles */
  .image-container h2 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  /* Styles for the text */
  .image-container p {
    font-size: 16px;
  }
  
  /* Styles for spacing between image and text */
  @media only screen and (min-width: 768px) {
    .image-container {
      flex-basis: 50%;
      margin-bottom: 0;
    }
    
    .image-container + .image-container {
      margin-left: 20px;
    }
  }
  
  @media only screen and (max-width: 992px) 
  {
    .container2 {
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }
    
    .section2 {
      width: 100%;
      padding: 20px;
      text-align: center;
    }
    
    .section2 p{
      font-size: 18px;
    }
    
    .section2 img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 5px;
      box-shadow: #feb900;
      margin-bottom: 20px;
    }
    
  }

