<style>
  /* ======  GLOBAL WRAPPERS  ====== */
 
  .ma-header-section {
    margin-bottom: 0;
  }
 
  .ma-header-section + .ma-header-section {
    margin-top: 0; /* remove double gaps between stacked sections */
  }
 
  /* Make sure we use full-width background but centered content */
  .ma-fullwidth-strip {
    width: 100%;
  }
 
  /* ======  SITE-WIDE ALERT BANNER  ====== */
 
  .ma-alert-wrap {
    background-color: #fef4d0; /* pale yellow */
    border-top: 7px solid #c93c2b;
    border-bottom: 7px solid #c93c2b;
    position: relative;
    z-index: 50;
  }
 
  /* Striped edges (left + right) */
  .ma-alert-wrap::before,
  .ma-alert-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32px;
    background-image: repeating-linear-gradient(
      135deg,
      #c93c2b 0,
      #c93c2b 8px,
      #fef4d0 8px,
      #fef4d0 16px
    );
  }
 
  .ma-alert-wrap::before { left: 0; }
  .ma-alert-wrap::after  { right: 0; }
 
  .ma-alert-inner {
    padding: 0.75rem 0;
  }
 
  .ma-alert-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
  }
 
 
  .ma-alert-content {
    flex: 1 1 auto;
  }
 
  .ma-alert-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0 0.15rem;
    color: #c93c2b;
  }
 
  .ma-alert-text {
    margin: 0;
    font-size: 0.95rem;
    color: #333333;
  }
 
  .ma-alert-close {
    position: absolute;
    top: 0.1rem;
    right: 0;
    border: none;
    background: none;
    font-size: 1.2rem;
    line-height: 1;
    color: #c93c2b;
    cursor: pointer;
  }
 
  .ma-alert-close:focus {
    outline: 2px solid #333;
    outline-offset: 2px;
  }
 
  /* ======  GREEN HERO (PAGE TITLE + TEASER)  ====== */
 
  .ma-hero-wrap {
    background-color: #288560;
    color: #ffffff;
    padding: 1.75rem 0 2.25rem;
  }
 
  .ma-hero-heading {
    margin: 0 0 0.25rem;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
  }
 
  .ma-hero-teaser {
    margin: 0;
    max-width: 40rem;
    font-size: 0.98rem;
  }
 
  /* ======  HERO NAVIGATION LINKS  ====== */
 
  .ma-hero-nav {
    margin-top: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
 
  .ma-hero-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
  }
 
  .ma-hero-nav-link {
    position: relative;
    padding-bottom: 0.35rem;
    font-size: 0.95rem;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 3px solid transparent;
  }
 
  .ma-hero-nav-link:hover,
  .ma-hero-nav-link:focus {
    text-decoration: none;
    border-bottom-color: #ffffff;
  }
 
  /* Highlight current page link */
  .ma-hero-nav-link--active {
    border-bottom-color: #ffffff;
    font-weight: 600;
  }
 
  /* ======  RESPONSIVE  ====== */
 
  @media (max-width: 767.98px) {
    .ma-alert-wrap::before,
    .ma-alert-wrap::after {
      width: 16px;
    }
 
    .ma-alert-box {
      flex-direction: row;
    }
 
    .ma-hero-heading {
      font-size: 1.8rem;
    }
  }

/* NAV BAR UNDER HERO */
.br-ma-nav {
    background: #ffffff;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 0;              
}
 
/* make container edges align with page container */
.br-ma-nav .container {
    padding-left: 0;
    padding-right: 0;
}
 
/* UL */
.br-ma-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}
 
/* LINKS */
.br-ma-nav .br-ma-nav-link {
    display: inline-block;
    padding: 12px 0;
    font-size: 16px;
    color: #333333;       /* ensure visible on white */
    text-decoration: none;
    transition: all 0.2s ease;
}
 
/* HOVER */
.br-ma-nav .br-ma-nav-link:hover {
    color: #0066cc !important;
    border-bottom-color: #a3a3a3;
}
 
/* ACTIVE TAB */
.br-ma-nav .br-ma-nav-link.active {
    color: #0076ff !important;
    border-bottom-color: #0076ff;
    font-weight: 600;
}

 
