#company-image-box {
  width: 100%;
  margin: 3px;
  padding: 0;
  text-align: center;
}

.company-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
}

#company-contact-box {
  border-top: none;
  width: 100%;
  padding: 10px;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0084B9;
}

.contact-table {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.contact-column {
  flex: 1;
  padding: 20px;
  border-left: 1px solid #ccc;
  box-sizing: border-box;
}

.contact-column:first-child {
  border-left: none;
}

.contact-column h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
  color: #ccc;
  text-align: left !important;
}

.address-column p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  text-align: left !important;
}

.contact-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
   text-align: left !important;
}

.links-column ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative; /* Needed for the pseudo-element */
}

/* Vertical line between columns */
.links-column ul::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 37%;
  width: 1px;
  background-color: #ccc; /* Adjust color to match your theme */
  transform: translateX(-0.5px); /* Center the line */
  z-index: 1;
}

.links-column ul li {
  width: calc(50% - 10px); /* Adjust spacing around the line */
  padding-right: 10px;
  margin-bottom: 1px;
  z-index: 2; /* Ensure links appear above the line */
}

.links-column ul li a {
  text-decoration: none;
  font-size: 13px;
  color: #ffffff;
  transition: color 0.2s ease;
}

.links-column ul li a:hover {
  color: #00365A;
  text-decoration: underline;
}



/* Logo column alignment */
.logo-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.logo-column img {
  max-width: 120px;
  height: auto;
}

#company-footer-box {
  width: 100%;
  text-align: center;
  padding: 20px 30px;
  background-color: #00658C;
  color: #ffffff;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}
