* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
  background: #f7f7f7;
  color: #222;
}

a {
  text-decoration: none;
  color: inherit;
}

/* TOP CONTACT BAR */
.top-contact-bar {
  background: #ffffff;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
}

.logo {
  height: 36px;
}

.contact-right a {
  margin-left: 12px;
  font-size: 14px;
  color: #0a58ca;
  font-weight: 500;
}

/* MAIN HEADER */
.main-header {
  background: #0b3a6e;
  color: #fff;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.brand {
  font-size: 18px;
  font-weight: 700;
}

.nav-links {
  display: none;
}

.nav-links a {
  margin-left: 20px;
  font-size: 15px;
}

.menu-toggle {
  font-size: 22px;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

.mobile-menu.show {
  display: block;
}

/* DESKTOP */
@media (min-width: 992px) {

  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: block;
  }

  .mobile-menu {
    display: none !important;
  }
}

.site-footer {
  background: #0b3a6e;
  color: #ffffff;
  text-align: center;
  padding: 30px 16px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
}

.footer-copy {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-links {
  font-size: 14px;
  margin-bottom: 18px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: underline;
  margin: 0 6px;
}

.footer-links span {
  margin: 0 4px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.footer-social img {
  width: 26px;
  height: 26px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-social img:hover {
  opacity: 1;
}

/* Desktop tweak */
@media (min-width: 992px) {
  .site-footer {
    padding: 40px 20px;
  }
}