/* Reset */
html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.page-content {
  flex: 1; /* takes all available space, pushing footer down */
}

.mil-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 3px solid #d1d5db;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  font-family: "Roboto", Arial, sans-serif;
}

/* Header layout */
.mil-header-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;

  display: flex;
  align-items: center;
  gap: 16px; /* spacing between logo, separator, tagline */
}

/* Logo */
.mil-logo img {
  height: 44px;
  display: block;
}

/* Vertical separator */
.mil-separator {
  width: 1px;
  height: 28px;
  background-color: #d1d5db; /* light gray */
}

/* Tagline */
.mil-tagline {
  font-size: 17px;
  font-weight: 500;
  color: #1f2937;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .mil-header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .mil-separator {
    display: none; /* hide vertical bar on small screens */
  }

  .mil-tagline {
    font-size: 16px;
  }
}


/* Footer styles */
.mil-footer {
  background-color: transparent;
  color: #1f2937;
  font-family: "Roboto", Arial, sans-serif;
  padding: 24px 20px 16px;
  text-align: center;
}

.mil-footer-links {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.mil-footer-links a {
  color: #1f2937;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.2s;
}

.mil-footer-links a:hover {
  color: #004b8d;
}

.mil-footer-links .bar {
  color: #6b7280;
  margin: 0 6px;
}

.mil-footer-copy {
  font-size: 13px;
  color: #4b5563;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}