.cl-banner {
  background-image: url(/img/chiplock/Chiplock-Truck.jpg);
  background-size: cover; /* Adjust to your liking */
  background-position: bottom; /* Adjust to your liking */
  margin-top: 5px;
  height: calc(70vh - 5px); /* Adjust to your liking */
  display: flex;
  justify-content: center;
  align-items: center;
}

.cl-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70vh;
  background-color: rgba(0, 0, 0, 0.25);
}

.cl-banner h2 {
  color: #fff; /* Set the color of your title */
  font-size: 5.5rem; /* Adjust to your liking */
  text-align: center;
  text-shadow: 2px 2px #000; /* Add a shadow to your title */
  z-index: 1;
}

.cl-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px 5px #000000;
}

.cl-img {
  text-align: center;
  padding: 10px;
}

.image-container-cl {
  position: relative;
  width: calc(50% - 10px);
  margin-bottom: 10px;
}

.image-container-cl img {
  display: block;
  width: 100%;
  height: 450px;
  border-radius: 5px;
}

.cl-text {
  text-align: center;
  border-bottom: solid var(--site-color-01);
  padding-left: 25vh;
  padding-right: 25vh;
  padding-bottom: 25px;
  margin-top: 25px;
  margin-bottom: 10vh;
}

.cl-text h1 {
  font-size: 5rem;
}

/* Mobile Version */

@media only screen and (max-width: 600px) {
  .cl-banner {
    height: 34vh;
  }

  .cl-banner::before {
    display: none;
  }

  .cl-text h1 {
    font-size: 4rem;
    width: fit-content;
    text-align: center;
  }

  .cl-text {
    column-gap: 20px;
    width: 100vw;
    border: none;
    padding-left: 40px;
    border-bottom: 2px solid var(--site-color-01);
  }

  .cl-text p {
    width: 80vw;
    text-align: left;
    padding-top: 10px;
  }

  .index-about-flex {
    width: 100vw;
  }

  .image-container-cl {
    flex-direction: column;
    column-gap: 20px;
    width: 100vw;
  }

  .image-grid {
    grid-template-columns: 1fr;
    width: 100vw;
  }

  .image-grid img {
    width: fit-content;
  }
}

/* Tablet Version */

@media only screen and (max-width: 768px) {
  .cl-text {
    padding: 25px 20px; /* Adjust the horizontal padding */
    margin: 30px auto; /* Center the container if necessary */
    max-width: 80%; /* Limit the maximum width to maintain readability */
    width: auto; /* Allow the container to grow or shrink to fit the content */
    text-align: justify;
  }

  .cl-text h1 {
    font-size: 3.5rem;
    padding-bottom: 15px;
  }
}
