.header-branding div a img {
    height: 150%;
}
.callout-region {
    background-color: #012169 !important;
    color: #fff !important;
    text-align: center;
    font-size: 18px;
    padding: 15px;
}

.feature-region {
  background: #f16038;  /* Your orange/blue bar color */
  min-height: 80px;     /* Thinner bar */
  position: relative;
  overflow: hidden;     /* Keep waves contained */
}

/* Top Wave (White) */
.feature-region::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px; /* Taller for more dramatic wave */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,90 C360,0 1080,150 1440,60 L1440,0 L0,0 Z'/%3E%3C/svg%3E") 
    no-repeat top center;
  background-size: 100% 100%;
  z-index: 2;
}

/* Bottom Wave (#012169) */
.feature-region::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px; /* Taller for more dramatic wave */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150' preserveAspectRatio='none'%3E%3Cpath fill='%23012169' d='M0,90 C360,0 1080,150 1440,60 L1440,150 L0,150 Z'/%3E%3C/svg%3E") 
    no-repeat bottom center;
  background-size: 100% 100%;
  z-index: 2;
}