body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f8f9fb;
  color: #111;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 9999;
  box-sizing: border-box;
}

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

.nav-links li {
  display: inline-block;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-family: sans-serif;
  font-weight: bold;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: #f8b240;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.logo span {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.5rem;
}

.site-footer {
  padding: 60px 20px;
  background-color: #ffffff;
  border-top: 1px solid #eee;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/*Responsive*/
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

body::-webkit-scrollbar {
  display: none;
}

/* Tablet & Handy */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    background: #1a1a1a;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    transform: translateY(-20px);
    opacity: 0;
    transition: 0.3s;
    display: none;
  }

  .nav-links.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .navbar {
    padding: 0 20px;
  }
}
