body {
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff
  padding: 0;
}

.site-header {
  background-color: #ffffff
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  padding: 1rem 2rem;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.logo {
  display: block;
  height: auto;
  max-width: 150px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;  /* Prevents logo from shrinking */
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;  /* Pushes nav to the right */

}

nav ul {
  list-style: none;
  padding: 3px 5px;
  background: #fff;

  a {
    color: #333333;
    text-decoration: none;
    font-size: 
    font-weight: 400
    padding: 8px 12px;
    transition: color 0.2s ease;

    &:hover {
      text-decoration: underline;
      color: #ff7043;
    }
    &:active{
      color: #ff7043;
    }
  }

  li {
    display: inline;
    position: relative;
  }
}


.main-content {
  min-height: calc(100vh - 200px);  /* Prevents footer from floating */
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

footer {
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  padding: 24px 0;
  font-size: .7em;
  text-align: center;
  margin-top: 64px;
}

#map {
  height: 300px;
}
