/* Top Banner with Logo and Links */
.top-banner {
  background-color: white;
  color: #003087;
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}

.top-banner-row {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-section {
  flex: 0 0 40%;
  text-align: center;
}

.logo-section img {
  max-height: 90px;
  width: auto;
}

.top-links-section {
  flex: 0 0 60%;
  text-align: right;
  padding: 10px;
}

.top-links-section a {
  color: #003087;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
}

.top-links-section button.email-button {
  color: #003087;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.top-links-section a:hover,
.top-links-section button.email-button:hover {
  color: #001f5c;
  text-decoration: underline;
}

/* Navigation Bar */
.nav-bar {
  background-color: #003087;
  color: white;
  padding: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 50px;
  background-color: #003087;
}

.top-nav li {
  margin: 0;
}

.top-nav a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  transition: background-color 0.3s;
  background-color: #003087;
}

.top-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
}

/* Page Title Section */
.page-title-section {
  background-color: #f8f9fa;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}

.page-title-section h1 {
  text-align: center;
  color: #003087;
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .top-banner-row {
    flex-direction: column;
    text-align: center;
  }
  
  .logo-section,
  .top-links-section {
    flex: none;
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
  
  .top-links-section {
    padding: 0;
  }
  
  .top-links-section a {
    margin: 0 10px;
  }
  
  .nav-container {
    padding: 10px 20px;
    position: relative;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .top-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    width: 100%;
  }
  
  .top-nav li {
    flex: 0 0 auto;
    margin: 2px;
  }
  
  .top-nav a {
    padding: 8px 12px;
    font-size: 14px;
    display: block;
    white-space: nowrap;
  }
}
