/* Reset some default styling */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #f0f2f5;
    color: #333;
  }
  
  /* Navigation styling */
  header {
    background-color: #2c3e50; /* A solid blue often used in finance */
    padding: 1em 0;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
  }
  
  nav li {
    margin: 0 1em;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Section styling */
  section {
    padding: 2em 1em;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  /* Specific styles for a financial healthcare look */
  section#home {
    background: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
                url('../images/financial-healthcare-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #333;
    text-align: center;
    padding: 4em 1em;
    width: 100%;
    margin: 0;
  }
  
  h1, h2, h3 {
    margin-bottom: 0.5em;
  }
  
  /* Footer styling */
  footer {
    background-color: #00457c;
    color: #fff;
    text-align: center;
    padding: 1em 0;
  }