  .hero-section {
    box-sizing: border-box;
  }

  /*DESKTOP(Image with Center Overlay) */
  .hero-section {
    position: relative;
    width: 100%;
    height: 550px; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }

  .hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-media picture,
  .hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; 
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 40px;
  }

  /* Desktop */
  .hero-title {
    color: #000000;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.5rem 0;
    letter-spacing: normal
  }

  .hero-subtitle {
    font-size: 1.35rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
  }

  /*MOBILE  (Screens smaller than 768px) */
  @media (max-width: 767px) {
    .hero-section {
      height: auto; 
      display: flex;
      flex-direction: column; 
      text-align: center;
    }

    .hero-media {
      position: relative; 
      width: 100%;
      height: 300px; 
    }

    .hero-content {
      width: 100%;
      padding: 40px 24px; 
    }

    /* Mobile  Downscaling */
    .hero-title {
      font-size: 2.2rem;
      margin-bottom: 16px;
    }

    .hero-subtitle {
      font-size: 1.1rem;
    }
    
    .hero-description {
      padding: 4px 10px;
    }
  }