html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* site.css */

/* Lighter background similar to www.eac.gov */
.eac-header {
    background-color: #1a3e6d; /* Lighter navy blue */
    padding: 10px 0; /* Adjusted padding to make the header taller */
    color: white;
    width: 100%; /* Ensure header spans full width */
}

.site-logo {
    display: flex;
    align-items: center; /* Vertically center logo and text */
    justify-content: flex-start; /* Align left */
    gap: 30px; /* Space between image and text */
    max-width: 1200px; /* Ensure max width for the logo container */
    margin: 0 auto; /* Center the logo container horizontally */
}

.eac-logo-img {
    height: 60px; /* Slightly smaller logo size (image size adjusted) */
    width: auto;
}

.eac-logo-text {
    display: flex;
    flex-direction: column; /* Stack text vertically */

}

    .eac-logo-text span {
        font-weight: 600; /* Make the text bold */
        font-size: 1.8rem; /* Increased font size */
        line-height: 1.2;
        color: white;
    }

    .eac-logo-text a {
        text-decoration: none;
    }

.container {
    max-width: 1200px; /* Align content with header */
    margin: 0 auto; /* Center main content */
}