/* styles.css */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: sans-serif;
    background-color: white;
  }
  
  .header {
    width: 100%;
    padding: 1rem;
  
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .left-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
  }
  
  .nav {
    display: flex;
    gap: 1.5rem;
  }
  
  .nav a {
    text-decoration: none;
  }
  
  .right-section {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  