/* Contenedor centrado de 990 px */
.sr-container {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

/* Fondo general gris */
body { background: rgb(230, 230, 230); }

/* Header / menú / footer blancos */
.sr-header,
.sr-primary-menu,
.sr-footer,
.sr-footer__bottom { background: #fff; }

/* Altura del header para la imagen principal */
.sr-header-image {
  height: 300px;                 /* lo que pediste */
  display: flex;                 /* centrado vertical/horizontal */
  justify-content: center;
  align-items: center;
  overflow: hidden;              /* por si la imagen es muy alta */
  padding: .5rem 0;
}
.sr-header-image img {
  max-height: 100%;
  width: auto;
  height: auto;
}

/* Un poco de respiración 
.sr-header, .sr-primary-menu, .sr-footer, .sr-footer__bottom {
  padding-top: .5rem;
  padding-bottom: .5rem;
}*/
