/* static/css/style.css */
:root {
    --primary-color: #162649; /* A deep navy blue */
    --secondary-color: #f4f7fa; /* Light background for a clean look */
    --text-color: #333;       /* Dark grey text for readability */
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
  }
  
  h1, h3 {
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .hero {
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
  }
  
  .hero img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Additional styling for a corporate look */
  .navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color) !important;
  }
  
  footer {
    background-color: var(--primary-color) !important;
    color: #fff;
  }
  