body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #0A0A0A;
}

nav.navbar-horizontal {
  display: flex;
  flex-direction: row;
  align-items: center; /* Vertically center items */
  justify-content: space-between;
  padding: 0.5rem 2rem; /* Reduce padding if needed */
  background: lightsteelblue;
  width: 100vw;
  box-sizing: border-box;
  min-height: 70px; /* Ensure enough height for logo and links */
}

.nav-logo-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 70px;
  justify-content: flex-end; /* Align items to the bottom */
  position: relative;
  margin-left: 5rem; /* Add space to the left of the logo */
}

.nav-logo {
  height: 50px;   /* Reduce logo height */
  width: auto;    /* Keep aspect ratio */
  margin-bottom: 0;
  margin-right: .5rem; /* Space between logo and links */
}

.logo-subtext {
  font-size: 0.8rem;
  color: #333;
  margin-left: 4px;
  margin-top: 2px;
  align-self: flex-end; /* Move text to the right within the column */
}

.nav-links-center {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-spacer {
  width: 120px; /* Adjust to match logo width for perfect centering */
  height: 1px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  flex-direction: column;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  background: #f5f5f5;
}

.inner-hero {
  max-width: 100vw;
  padding-left: .5rem;
  text-align: auto;
}

.leadership-images {
  display: flex;
  gap: 32px; /* Adjust spacing as needed */
  justify-content: left;
  align-items: left;
}

.leadership-image {
  max-width: 150px;
  border-radius: 30px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.5);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 24px;
  padding-top: 48px; /* Add spacing from the top */
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 10;
}

.hero-IT-solutions {
  width: 200px;
  height: 150px;
  margin-top: 1rem;
}

form {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #eeeeee;
  margin-top: 2rem;
}

footer table {
  margin-left: 0;
  text-align: left;
  table-layout: center;
  width: 60%;
  border: none;
  padding-left: 6rem;
}

footer .contact {
  font-size: 0.9rem;
  color: #333;
  vertical-align: top;
  padding-right: 2rem;
}

footer .mission {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0.5rem;
  vertical-align: top;
  padding-left: 2rem;
}

footer .footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}