.industries-section {
  align-items: flex-start;
  gap: 40px;
  color: rgba(81, 37, 32, 1);
}

.industry-image{
  width:339px;
  height:377px;
  position:relative;
  overflow:hidden;
  border:1px solid #eee;
  margin-top:50px !important;
}

.image-layer{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.05);
  transition:opacity .35s ease, transform .6s ease;
}

.image-layer.active{
  opacity:1;
  transform:scale(1);
}

/* List styling (same as your design) */

.industry-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 920px;
}

.industry-item {
  width: 100%;
  padding: 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 2.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 2%;
}

.industry-item:hover {
  /* margin-top: 10px;
  margin-bottom: 10px; */
  background-color: #f5f0ec;
  border: 0px;
}

.industry-item span {
  font-weight: bold;
  width: 30px;
  display: inline-block;
  margin-right: 60px;
}

@media screen and (max-width: 768px) {

  .industry-item {
    font-size: 1rem;
  }

  .industry-list {
    width: auto;
  }

}