* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #ffffff;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/*Navbar*/
.navbar {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 80px;
}

.icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon img {
  width: 60px;
  height: 60px;
}

.icon h2 {
  color: #b87333;
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0;
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: auto;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #2563eb;
}

nav a:last-child {
  background-color: #1e293b;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
}

nav a:last-child:hover {
  background-color: #334155;
}