.container-header {
    background-image: url('../../../../../images/banners/ALERTbanner500.jpg');
    background-color: transparent;
    background-size: cover; /* Ensures image covers header */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat;

}
.header {
    /* height: 250 px; not working */
}

.header .brand-logo img {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

/* Change body text size globally for all articles */
.com-content-article, .com-content-category-blog {
    font-size: 1.5rem; /* Adjust this value as needed (e.g., 18px or 1.2rem) */
    line-height: 1.6;  /* Improves readability with larger fonts */
}

/* Mission Statement */
.mission-statement {
    max-width: 1200px;
    background-color: #f0f4f7;
    border-radius: 8px;
    box-sizing: border-box;
}
.flex-container {
  display: flex;          /* Activates Flexbox layout */
  gap: 20px;              /* Adds space between the two divs */
}

.flex-child {
  flex: 1;                /* Forces both divs to take up equal width */
  padding: 15px;
  /* background-color: #f0f0f0; */
}