nav {
    background-color: red;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    width: 100px;
    height: auto;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    padding: 0.5rem 1rem;
  }
  
  .nav-links a:hover {
    background-color: #ddd;
  }
  
  .get-in-touch {
    background-color: #333;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
  }

  body {
    margin-top: 4rem; /* Adjust the value to match the height of your navbar */
}