* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Helvetica Neue', sans-serif;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
  }
  
  /* ========== NAV ========== */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 30px 50px; */
    color: white;
    font-size: 14px;
  }
  
  nav .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
  }
  
  .brand-text {
    padding-left: 10px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    max-width: 160px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    z-index: 1;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  nav ul li a:hover {
    opacity: 0.7;
  }
  
  .navlinks {
    align-items: center;
  }
  
  /* ========== HERO TEXT (base styles — layout handled in inline <style>) ========== */
  .text {
    color: white;
  }
  
  .text .new {
    font-size: 12px;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0.7;
    margin-bottom: 10px;
  }
  
  .text h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: white;
  }
  
  /* ========== BUTTONS ========== */
  button {
    /* margin-top: 30px; */
    padding: 8px 20px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-weight: bold;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
  }
  
  /* .login-button {
    padding: 8px 20px;
    background-color: white;
    color: #d7b895;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: auto;
  } */
  

  
  /* ========== MAP SECTION ========== */
  .map-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 50px;
    background-color: white;
    height: auto;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .map-left {
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    border-radius: 20px;
    padding: 20px;
  }
  
  .map-left h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .map-left button {
    padding: 10px 20px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .map-right {
    flex: 6;
    border-radius: 20px;
    overflow: hidden;
  }
  
  #map {
    width: 100%;
    height: 100%;
    min-height: 320px;
  }
  
  .location-table-container {
    max-height: 270px;
    overflow-y: scroll;
    max-width: 400px;
  }
  
  .location-table {
    color: black;
    font-size: 14px;
    line-height: 1.6;
    border-collapse: collapse;
  }
  
  .location-table td {
    padding: 4px 0;
  }
  
  /* ========== FOOTER ========== */
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .main-footer {
    
    color: rgba(0, 0, 0, 0.857);
    padding: 40px 30px 40px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  
  .footer-left {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 2;
  }
  
  .footer-left ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-left li {
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    text-align: right;
  }
  
  .footer-right ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-right li {
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .footer-logo {
    height: 40px;
    margin-bottom: 20px;
  }
  
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  
  .footer-social img {
    height: 20px;
    filter: grayscale(100%) brightness(150%);
    cursor: pointer;
  }
  
  .footer-sub {
    text-decoration: none;
    color: white;
  }
  
  .footer-bottom {
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
  }
  
  /* ========== MOBILE ========== */
  @media (max-width: 800px) {
    .text h1 {
      font-size: 48px;
    }
  
    button {
      width: 100%;
      max-width: 300px;
    }
  
    .nav-sub {
      display: none;
    }
  
   
  
    .map-left,
    .map-right {
      flex: unset;
      width: 100%;
    }
  
    .map-right {
      min-height: 400px;
    }
  
    .location-table-container {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    .footer-top {
      align-items: center;
      text-align: center;
    }
  
    .map-section {
      flex-direction: column;
    }
  
    #map {
      min-height: 300px;
    }
  }
  
  html, body {
    overflow-x: hidden;
  }