  .main-container-wrapper {
        max-width: 1300px;
        margin: 0 auto;
    }
    
    .main-container-wrap {
        padding:60px 10px;
    }
    
    .main-container-wrapper h2 {
        margin-bottom:20px;
        
    }

.main-block-container {
      display: grid;
      grid-template-columns: 45% 1fr;
      grid-template-rows: repeat(1, 1fr);
      gap: 0px 40px;
      row-gap: 0px;
      column-gap: 40px;
      grid-auto-flow: row;
       padding: 60px 10px;
    }

    .title-h2 {
      font-family: "Inter", Sans-serif;
      font-size: 40px;
      font-weight: 600;
      line-height: 51px;
    }
    
     .title-h2 span {
    color: #E41E37;
  }

    .text-p {
      font-family: "Inter", Sans-serif;
      font-size: 16px;
      font-weight: 500;
      line-height: 30px;
    }

    .text-p-black {
      color: #152b63;
    }

    .title-black {
      color: #152b63;
    }

    .title-white {
      color: #ffffff;
    }

    .text-p-white {
      color: #ffffff;
    }
    
    .title-center{
        text-align:center;
        margin-bottom: 20px;
    }
    
    
    .nearby-cities-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 60px 10px;
    }
    
  .nearby-cities-title {
   display: flex;
   align-items: center;
   justify-content: center;
  }



  .video-wrapper {
   display: flex;
   align-items: center;
   justify-content: center;
  }

  .video-overlay {
    position: relative;
    width: 560px;
    height: 445px;
    max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
  }

  .video-toggle {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
  }


  .video-container {
    position: absolute;
    inset: 0;
    background: url('https://junkgarbageremoval.com/wp-content/uploads/2025/04/Pro_Junk_Dispatch.webp')
      center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: opacity .28s ease, visibility .28s ease;
  }

  .play-button {
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    position: relative;
  }
  .play-button::after {
    content: '';
    position: absolute;
    left: 33%;
    top: 25%;
    width: 0;
    height: 0;
    border-left: 28px solid white;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
  }


  .video-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
  }

 
  .video-toggle:checked ~ .video-container {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  
  
    @media (max-width: 1024px) {
    .main-block-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
  }

  @media (max-width: 767px) {
    .video-overlay {
    width: 100%;
    height: auto;
  }

  .title-h2 {
      font-size: 30px;
      line-height: 40px;
    }
  }
  
  
  
  
  .city-container-2-wrapper {
    background-image: url(https://junkgarbageremoval.com/wp-content/uploads/2025/03/consultant-form-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }

   .city-block-2-container {
    display: grid;
    grid-template-columns: 45% 1fr;
    grid-template-rows: repeat(1, 1fr);
    gap: 0px 40px;
    row-gap: 0px;
    column-gap: 40px;
    grid-auto-flow: row;
    padding: 60px 10px;
    max-width: 1300px;
    margin: 0 auto;
  }

 .city-block-2-image {
    max-height: 445px;
    object-fit: cover;
    border-radius: 15px !important;
  }




  @media (max-width: 1024px) {
    .city-block-2-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
  }
