/* Section 2 – Mobile layout */
@media (max-width: 767px) {
  .company-section {
    /* stack vertically */
    flex-direction: column;
    /* let height grow */
    min-height: auto;
  }

  .company-text,
  .company-image-area {
    /* full width */
    width: 100%;
  }

  .company-text {
    order: 1;
    /* reduce padding for mobile */
    padding: 40px 5vw;
  }

  .company-image-area {
    order: 2;
    position: relative;
    /* give a little breathing room */
    margin-top: 0;
  }

  .sticky-image {
    /* let the height adjust to content */
    height: auto;
    overflow: hidden;
  }

  .sticky-image img {
    /* scale proportionally */
    width: 100%;
    height: auto;
    object-fit: cover;
  }
.intro-block{
   padding: 1rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  max-width: 60vw;
  min-width:60vw ;
  margin-left: none;
  margin-right: none;
} 
  .overlay-title {
    /* keep centered over the image */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* you can tweak font-size if needed */
    font-size: 1.6rem;
    line-height: 1.4;
    /* ensure it stays visible */
    z-index: 2;
  }
}
