
.site-header {
    background-color: var(--sog_navy);
    color: white;
    /* padding: 2.5rem 6.375rem 3.75rem 6.375rem; */
    padding: 2.5rem 0 3.75rem 0;
    text-align: center; /* Center align navigation and title */
    border-bottom: 10px solid var(--yellow);
}

.site-header-logo {
    width: 25.85613rem;
    height: 4.4375rem;
}

.sog-logo {
    width: 15.1875rem;
    height: 4.6875rem;
}

/* Mobile responsiveness for header */
@media screen and (max-width: 768px) {
    .site-header {
        padding: 1.5rem 1rem 2rem 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .sog-logo {
        width: 14rem;
        height: auto;
    }
    
    .site-header-logo {
        width: 20rem;
        height: auto;
    }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
    .site-header {
        padding: 1.5rem 1rem 2rem 1rem;
    }
    
    .header-content {
        gap: 1.5rem;
    }
    
    .sog-logo {
        width: 14rem;
        height: auto;
    }
    
    .site-header-logo {
        width: 20rem;
        height: auto;
    }
}