/* Nav Bar */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  list-style: none;
  gap: 1.5rem;
  padding: 0;
  background: white;
  border: 5px solid #28278c;
}

.on-right {
  margin-left: auto;
}

.nav-bar > li {
  position: relative;
}

.nav-bar > li > a {
  display: block;
  padding: 14px 16px;
  color: black;
  font-weight: bolder;
  text-decoration: none;
  text-align: center;
}

.nav-bar > li > a:hover {
  background: #dadef7;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 187px;
  background: white;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
  font-weight: bolder;
}

.dropdown-content li a {
  display: block;
  padding: 12px 16px;
  color: black;
  text-decoration: none;
}

.dropdown-content li a:hover {
  background: #dadef7;
}

.dropdown:hover .dropdown-content {
  display: block;
  z-index: 1000;
}

#nav-text {
  height: 40px;
  width: auto;
  display: block;
}

#nav-text-spot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

body {
margin: 15px;
}

/* Help Page */

h5 {
  font-weight: 600;
}

.unanswered {
  color: red;
  font-weight: bold;
  margin-left: 8px;
}

.answered {
  color: green;
  font-weight: bold;
  margin-left: 8px; 
}

/* Landing Page */

.page-container {
  max-width: 1400px;   
  margin: 0 auto;       
  padding: 40px 20px;  
}

#features-demo {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 20px;
}

#features-list {
  flex: 1;
}

#features-list li {
  margin-bottom: 10px;;
}

#demo-video {
  margin-left: 100px;
  flex: 2;
}

#demo-video video {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.headshot {
  width: 120px;
  height: 140px;
  object-fit: cover;
  border: 3px solid #28278c;
  margin-bottom: 10px;
}

#team-photos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

#team-photos > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  text-align: center;
}

#team-photos p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

