
.clinical-app {
    padding: 60px 0;
    font-family: 'Arial', sans-serif;
    color: #000;
    background-color: #fff;
  }
  
  .section-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 20px;
  }
  
  .clinical-app h1 {
    text-align: center;
    color: #027F00;
    font-size: 50px;
    font-weight: bolder;
    -webkit-text-stroke: 1px #027F00;
    margin-bottom: -35px;
  }
  
  .section h2 {
    font-size: 35px;
    font-weight: bolder;
    -webkit-text-stroke: 1px #027F00;
    margin-bottom: 20px;
    color: #027F00;
    text-align: left;
  }
  
  .content-row {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    margin-top: 30px;
    align-items: flex-start;
  }
  
  .image {
    flex: 1;
    max-width: 400px;
  }
  
  .image img {
    width: 400px;
    height: 500px;
    border-radius: 10px;
    object-fit: cover;
    object-position: 58% center;
  }
  
  .image2 img {
    width: 400px;
    height: 500px;
    border-radius: 10px;
    object-fit: cover;
    margin-top: -55px;
    object-position: 50% center;
  }

  .image3 img {
    width: 400px;
    height: 500px;
    border-radius: 10px;
    object-fit: cover;
    object-position: 13% center;
  }
  .text {
    flex: 2;
    min-width: 300px;
  }
  
  .text .item {
    margin-bottom: 20px;
  }
  
  .text .item h4 {
    color: #027F00;
    margin-bottom: 5px;
    margin-top: 15px;
    font-size: 16px;
  }
  
  .text .item p {
    margin: 0;
    line-height: 1.6;
    color: #666;
    font-size: 13px;   
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .benefits-list {
    padding-left: 20px;
    margin-top: 50px;
    margin-bottom: 50px;          
    list-style-type: disc;  
    color: #027F00;
    font-size: 15px;
    line-height: 1.7;
  }
  
  .benefits-list li {
    margin-bottom: 10px;         
  }
  
  .benefits-list li strong {
    font-weight: 600;
    color: #027F00;
  }
  
  .note {
    font-size: 13px;
    margin-top: 20px;
    font-weight: bold;
  }
  
  .gray-bg {
    background-color: #f4f4f4;
    padding: 60px 0;
  }

  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }

@media (min-width: 769px) {
  .mobile {
      display: none;
    }
  .desktop {
      display: block;
    }
  
}
  
  @media (max-width: 768px) {
    .gray-bg {
      padding: 0px 0;
    }
    
    .content-row {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }

    .clinical-app h1 {
      text-align: center;
      color: #027F00;
      font-size: 40px;
      margin-bottom: 25px;
      padding: 0 40px;
    }

    .section h2 {
      font-size: 20px;
      margin-bottom: 20px;
      text-align: center;
      font-weight: 100px;
    -webkit-text-stroke: 0px #027F00;
    }
  
    .image,

    .image img {
      width: 100%;
      height: 400px;
      border-radius: 10px;
      object-fit: cover;
    }
    .image2 img {
      width: 100%;
      height: 400px;
      border-radius: 10px;
      object-fit: cover;
      margin-top: 10px;
      object-position: 50% center;
    }
    
    .image3 img {
      width: 100%;
      height: 400px;
      border-radius: 10px;
      object-fit: cover;
      object-position: 13% center;
    }
    .text {
      max-width: 100%;
    }
  
    .text .item {
      text-align: center;
      margin-bottom: 20px;
      text-align: left;
      padding: 0 20px;
    }

    .text .item h4 {
        margin-bottom: 8px;
      }      
  
    .section-wrapper {
      padding: 40px 20px;
    }
  }
  