body {
  font-family: "Inter", Arial, sans-serif;
  background: #f9fafc;
  margin: 0;
  padding: 0;
  color: #222;
}

/* GLOBAL NAVBAR FIX */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-logo {
  width: 40px;
  height: 40px;
}

.nav-title {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-link {
  color: #0057ff;
  text-decoration: none;
  font-weight: 500;
}

.nav-link:hover {
  text-decoration: underline;
}

/* Mobile */
.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 15px;
    border-top: 1px solid #eee;
    width: 100%;
  }

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

  .menu-icon {
    display: block;
  }
}
.container {
  margin-top: 40px !important;
}

.container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #111;
}

.back-btn {
  text-decoration: none;
  color: #0071ff;
  margin-bottom: 10px;
  display: inline-block;
}

.role-list {
  margin-top: 20px;
}

.role-item {
  padding: 14px 18px;
  background: #eef3ff;
  border-left: 5px solid #4a74ff;
  border-radius: 6px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.role-item:hover {
  background: #dce8ff;
}

.roadmap-view {
  margin-top: 40px;
}

.section {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.section h3 {
  font-size: 20px;
  color: #0056d6;
  margin-bottom: 10px;
}

.section ul {
  margin-left: 20px;
  margin-top: 8px;
}

.section ul li {
  margin-bottom: 6px;
}

.hidden {
  display: none;
}
