/* Hero Mobile Bottom Alignment Fix */
@media screen and (max-width: 767px) {
  .hero-text-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: auto;
    padding-bottom: 60px;
  }
  
  .hero-hover {
    position: relative;
    align-items: flex-start;
    margin-top: 20px;
    margin-bottom: 0;
  }
  
  .hero-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100vh;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 479px) {
  .hero-text-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  
  .hero-hover {
    position: relative;
    align-items: flex-start;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  
  .hero-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100vh;
    padding-bottom: 40px;
  }
  
  .hero-wrapper {
    align-items: flex-end;
  }
  
  .hero-title-wrap {
    margin-bottom: 30px;
  }
}