    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body, html {
      height: 100%;
    }

    .hero {
      background: url('../images/v31_1779.png') no-repeat center center/cover;
      height: 100vh;
      color: white;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: end;
      align-items: center;
      text-align: center;
      padding: 2rem;
    }

    .logo {
      position: absolute;
      top: 2rem;
      left: 2rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo img {
      width: 216px;
    }

    .hero h1 {
      font-size: 80px;
      font-weight: 700;
      color: #a4ffe1;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.25rem;
      color: #eee;
      margin-bottom: 2rem;
    }

    .ml-button {
      display: inline-flex;
      align-items: center;
      color: #000;
      font-weight: bold;
      text-decoration: none;
    }

    .ml-button p {
      font-size: 40px;
      font-weight: 300;
      margin: 0px;
    }    

    .ml-button img {
      width: 260px;
      margin-right: 10px;
    }

  .location-banner {
      background: rgba(0, 0, 0, 0.7);
      padding: 0.5rem 1.5rem;
      border-radius: 430px;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1rem;
      border: 1px solid #fff;
      font-weight: bold;      
  }

    .location-banner span {
      color: #a4ffe1;
      font-weight: bold;
    }

    .location-banner img {
      height: 40px;
    }


/* --- Mobile Styles --- */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 30px;
        margin-bottom: 0px;
    }

  .logo {
    left: auto;
  }

  .ml-button {
/*    display: block;*/
  }

  .ml-button p {
      font-size: 20px;
  }

  .ml-button img {
    width: 150px;
  }

  .location-banner {
    display: block;
    font-size: 14px;
  }

  .location-banner img {
      display: none;
  }

  .hero {
    background: url('../images/vertical.jpg') no-repeat center center/cover;
  }

}