/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: #ffffff;
  color: #000000;
  min-height: 100vh;
}

/* Navigation Styles */
.section-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
  padding-left: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 1000;
  height: 57px;
  background: #fff;
  border-bottom: none;
}

.logo-container {
  width: 144px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 57px;
}

.logo-container img {
  height: 57px;
  width: auto;
}

.nav-links-container {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #000000;
  font-size: 1rem;
  font-weight: 500;
}

.nav-links-container .nav-link:last-child {
  padding: 0.5rem 1rem;
  border: 1px solid #000000;
  border-radius: 4px;
}

.nav-links-container .nav-link:last-child:hover {
  background: #f3f4f6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-links-container {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .nav-links-container .nav-link:last-child {
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .nav-links-container {
    gap: 1rem;
  }

  .logo-container img {
    height: 72px;
  }

  .nav-links-container .nav-link:last-child {
    padding: 0.3rem 0.6rem;
  }
}
