* {
    margin: 0;
    padding: 0;
  }
  
  .header {
    position: relative;
    background: url("../ImageStorage/long-span-shelving.webp") no-repeat center
      center/cover;
    height: 200px;
    color: white;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 50px;
  }
  
  .overlay h1,
  .overlay p {
    color: white;
    margin: 0;
  }
  
  .container {
    /* background-color: #0f6480; */
    width: 100%;
    max-width: 1250px !important;
    margin: auto;
  }
  .content {
    background-color: #f4f4f4;
    border-radius: 10px;
    width: 90%;
    margin: 60px auto;
    padding: 40px 30px;
  }
  
  .content h2 {
    font-size: 2rem;
    font-weight: 700;
  }
  
  .content p {
    font-size: 1rem;
  }
  
  @media (max-width: 768px) {
    .header {
      height: 180px;
      padding-left: 20px;
    }
    .overlay {
      padding-left: 20px;
    }
    .content {
      width: 95%;
      padding: 20px;
    }
  
   
    .listcontent li{
      font-size: 10px;
    }
  }
  