* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  color: white;
  padding: 10px 20px;
}

.nav-left {
  display: flex;
  align-items: center;
}

.logo {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}

.company-name {
  font-size: 20px;
  font-weight: bold;
}

.nav-right {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.hamburger {
  display: none;
  font-size: 48px;
  cursor: pointer;
  margin-left: 20px;
}

/* Base styles remain unchanged until media query */

@media (max-width: 768px) {
  .company-name {
    display: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999;
    gap: 30px;
    font-size: 24px;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 30px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
    font-size: 48px;
    cursor: pointer;
    z-index: 1000;
  }
}
