body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: white;
  background-size: cover;
  position: relative;
  color: white;
  transition: opacity 0.4s ease;
  font: 400 clamp(1rem, 1rem, 1.2rem) 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.top-section {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 5px 10px;
  gap: 16px;
  position: relative;
  z-index: 20;
}

.company-logo {
  height: auto;
  width: clamp(80px, 15vw, 160px);
  object-fit: contain;
  display: block;
}

.top-navbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  margin-right: 20px;
  border-radius: 50px;
  border: 2.5px solid black;
  background: rgba(255, 255, 255, 0.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  text-decoration: none;
  color: black;
  background: white;
  font-weight: normal;
  padding: 5px 12px;
  border-radius: 25px;
  transition: all 0.3s;
}

.nav-links a.active, .nav-links a:hover {
  background: black;
  color: white;
  font-weight: 900;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
  z-index: 200;
  position: relative;
  transition: transform 0.3s ease;
}

.hamburger.open {
    transform: rotate(90deg);
}

.hamburger i {
    pointer-events: none;
    color: black;
}

@media (max-width: 768px) {
  .top-section{
    padding: 12px;
  }

  .top-navbar {
    justify-content: flex-end;
    padding: 10px 15px;
    border: none;
    border-radius: 0;
    background: none;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 1.8rem;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    transition: right 0.4s ease;
    z-index: 90;
  }

  .nav-links.show {
    right: 0;
  }

  .nav-links a {
    background: none;
    color: black;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    padding: 2.5px 6px;
    transition: all 0.3s;
  }

  .nav-links a.active, .nav-links a:hover {
    color: white;
    background: black;
  }
}

@media (max-width: 375px) {
  .top-section {
    padding: 0 5px 10px 5px;
  }
}

.page-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65vh;
  width: 70vw;
  margin-top: 15px;
}

.website-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.5%;
  height: 95%;
  width: 50%;
}

.website-links a{
  text-decoration: none;
  color: black;
  font-weight: 600;
  border: 3px solid black;
  border-radius: 25px;
  padding: 1.5px 15px;
  transition: all 0.5s ease;
}

.website-links a:hover{
  background-color: black;
  color: white;
  font-size: 1.3rem;
}

.website-links a:hover::after{
  content: '\f061';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: relative;
  right: -10px;
}

.image-wrapper {
  height: 100%;
  width: 45%;
}

.main-image {
  height: 100%;
  width: 100%;
}

@media (max-width: 900px) {
  .page-wrapper{
    flex-direction: column-reverse;
    justify-content: flex-end;
    gap: 10px;
    width: 85vw;
  }

  .image-wrapper, .website-links {
    width: 100%;
  }

  .website-links {
    gap: 5px;
  }
}
