:root {
    --primary-color: #d7d9ce;
    --secondary-colour: #0C7489;
    --accent-color: #040404;
  }
  
  body {
    font-smoothing: antialiased;
    -webkit-fontsmoothing: antialiased;
    font-family: 'Open Sans', sans-serif;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
    min-height: 100vh;
    position: relative; /* Add this */
    padding-top: 60px;    
    }
  
    /* Typography */
  h1, h2 {
    font-size: 3.5em;
    font-weight: 600; /* Slightly bolder */
    letter-spacing: -0.02em; /* Subtle tightening */
    margin-bottom: 30px;
  }
  
  h1 {
    font-size: 3em; /* Adjust as needed */
  }
  
  h2 {
    font-size: 2em; /* Adjust as needed */
  }

  p {
    line-height: 1.6;
    /*text-align: justify;*/
  }