
* {
  margin: 0;
  padding: 0;
}
.header {
  position: relative;
  background: url("../ImageCase/cold-storage.jpg") 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 {
  width: 100%;
  max-width: 100%;
  margin: auto;
}

.content {
  /* border-radius: 10px; */
  height: 400px;
  padding: 40px 30px;
}

.content h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

.content p {
  font-size: 1rem;
  text-align: left;
}

.content ul li {
  font-size: 0.9rem;
  text-align: left;

}

.content img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
}


@media (max-width: 768px) {
  .header {
    height: 150px;
    padding-left: 15px;
  }
  
  .overlay {
    padding-left: 15px;
    align-items: center;
    text-align: center;
  }

  .overlay h1 {
    font-size: 1.5rem;
  }

  .overlay p {
    font-size: 0.9rem;
  text-align: left;

  }

  .container {
    width: 100%;
    padding: 10px;
  }

  .content {
    width: 100%;
    padding: 20px;
  }

  .content h2 {
    font-size: 1.5rem;
  }

  .content p,
  .content ul li {
    font-size: 0.9rem;
  text-align: left;

  }

  .content img {
    height: auto;
    max-height: 200px;
  }

  
  .row {
    flex-direction: column;
  }

  .col-md-6 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

 
}
