.lab-section {
    padding: 10px 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .container {
    max-width: 1140px;
    margin: 0 auto;
  }
  
  .lab-title {
    text-align: center;
    color: #027F00;
    font-size: 50px;
    font-weight: bolder;
    -webkit-text-stroke: 1px #027F00;
    margin-bottom: 60px;
  }
  
  .lab-images {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  
  .img-box {
    flex: 1;
    min-width: 300px;
    text-align: center;
    height: 260px;
    overflow: hidden;
  }
  
  .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .lab-columns {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  
  .lab-col {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
  }
  
  .lab-col h4 {
    color: #027F00;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0px;
  }
  
  .lab-col h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #027F00;
  }
  
  .lab-col p {
    margin-bottom: 15px;
  }

.img-mobile-only {
  display: none;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 12px;
  object-fit: cover;
}

.img-desktop-only {
  display: block;
}
  
  @media (max-width: 768px) {

    .lab-title {
      margin-top: 25px;
      font-size: 32px;
      margin-bottom: 40px;
    }
    .img-mobile-only {
      display: block;
      width: 350px;
      height: 180px;
      margin-left: 15px;
    }
  
    .img-desktop-only {
      display: none;
    }
  
    .lab-images {
      flex-direction: column;
      align-items: center;
    }
  
    .img-box {
      width: 100%;
      text-align: center;
    }
  
    .img-box img {
      width: 320px;
      height: 350px;
      border-radius: 12px;
    }
  }
  