/* .footer {
  position: relative;
  margin-top: auto;
  z-index: 10;
}

.footer-image {
  width: 1495px;
  height: 178px;
  margin-left: -28px;
  display: block;
}

@media (max-width: 1500px) {
  .footer-image {
    width: 100vw;
    height: auto;
    margin-left: 0;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .footer-image {
    height: 120px;
    object-fit: cover;
  }
} */
 .back-arrow-container {
    position: absolute;
    right: 40px;
    bottom: 160px;
    z-index: 10;
  }

  .back-arrow img {
    width: 95px;
    height: 95px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    display: block;
  }

  .back-arrow:hover img {
    opacity: 1;
  }

  @media (max-width: 768px) {
    .back-arrow-container {
      right: 20px;
      bottom: 100px;
    }

    .back-arrow img {
      width: 60px;
      height: 60px;
    }
  }