#technical-services {
    background: #f7f7f7;
    color: #222;
    padding: 100px 5vw;
    font-family: 'Montserrat', sans-serif;
  }
  
  .tech-services-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  .tech-services-text {
    flex: 1 1 50%;
  }
  
  .tech-services-text h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
  }
  
  .tech-subheading {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.7;
  }
  
  .tech-services-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    font-style: italic;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000;
  }
  
  .tech-services-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .tech-services-list li {
    margin-bottom: 10px;
  }
  
  .tech-services-image {
    flex: 1 1 45%;
    text-align: center;
  }
  
  .tech-services-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.0);
  }
  
  @media (max-width: 992px) {
    .tech-services-wrapper {
      flex-direction: column;
    }
  
    .tech-services-text h2 {
      font-size: 2rem;
    }
  
    .tech-services-image img {
      max-width: 80%;
      margin-top: 30px;
    }
  }
  