/* Top disclaimer bar */
.top-disclaimer {
  background: #f8f0d8;
  color: #6b5530;
  border-bottom: 1px solid #f0e3c2;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 12.5px;
  line-height: 1.45;
  padding: 8px 16px;
  text-align: center;
}
.top-disclaimer strong { color: #6b5530; font-weight: 700; }
@media (min-width: 768px) {
  .top-disclaimer { font-size: 13px; padding: 9px 20px; }
}

/* Shared site header — used on every page */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e3e9f0;
  padding: 20px 0;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  position: relative;
  z-index: 5;
}
.site-header__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.site-header a { text-decoration: none; }

.site-header__brand {
  color: #096198;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.site-header__links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.site-header__links a {
  color: #2d3a48;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 22px;
  transition: all 0.2s;
}
.site-header__links a:hover { background: #e8f0f6; color: #096198; }

.site-header__call {
  background: #096198 !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 26px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
}
.site-header__call:hover { background: #074a75 !important; color: #fff !important; }

@media (max-width: 600px) {
  .site-header__brand { font-size: 16px; }
  .site-header__links a { font-size: 13px; padding: 6px 10px; }
}
