.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 & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f7f9fc;
  color: #333;
}

/* ✅ NAVBAR STYLES */
.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;
  margin-bottom: 0.6rem;
  justify-content: left;
  width: 100%;
}

.logo-img {
  height: 50px;
  width: auto;
}

.portal-title {
  font-size: 1.8rem;
  color: white;
  font-weight: 600;
  margin: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  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;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #FFD700;
  left: 0;
  bottom: 0;
  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;
}

/* ✅ PAGE CONTAINER */
.container {
  max-width: 900px;
  margin: 40px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* ✅ ACCORDION CONTENT */
h1 {
  text-align: center;
  color: #0a58ca;
  margin-bottom: 30px;
}

.accordion {
  border-top: 1px solid #ddd;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  padding: 15px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  background-color: #eef3fa;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-header:hover,
.accordion-header.active {
  background-color: #d6e6fb;
}

.accordion-content {
  display: none;
  padding: 15px;
  background-color: #f9f9f9;
}

.accordion-content.open {
  display: block;
}

.accordion-content ul {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}

.accordion-content li {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}

