.home-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  height: 50px;
  margin-right: 10px;
}

.portal-title {
  font-size: 24px;
  margin: 0;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f3f4f6;
  padding-top: 20px;
}

/* NAVBAR */
.navbar {
  width: 100%;
  background-color: #111;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: left;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-top {
  display: flex;
  align-items: left;
  gap: 1rem;
  justify-content: left;
  width: 100%;
  margin-bottom: 0.6rem;
}

.logo-img {
  height: 50px;
}

.portal-title {
  font-size: 1.8rem;
  color: white;
  font-weight: 600;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #FFD700;
  left: 0;
  bottom: -2px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFD700;
}

/* SUPPORT CONTENT */
.container {
  max-width: 850px;
  margin: 40px auto;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  color: #0a58ca;
  margin-bottom: 30px;
}

h2 {
  color: #0056b3;
  border-bottom: 2px solid #e2e2e2;
  padding-bottom: 5px;
  margin-top: 30px;
}

ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 15px;
}

ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

a {
  color: #0a58ca;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}
