/* Header.css */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #222; /* Change the background color as needed */
    color: white;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    a {
      text-decoration: none;
      color: white;
    }
  }
  
  nav {
    ul {
      list-style: none;
      display: flex;
      align-items: center;
      li {
        margin: 0 15px;
        a {
          text-decoration: none;
          color: white;
          &:hover {
            text-decoration: underline;
          }
        }
      }
    }
  }
  
  /* Responsive Navigation */
  .nav-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    span {
      height: 3px;
      width: 25px;
      background-color: white;
      margin: 6px 0;
      display: block;
      transition: 0.3s;
    }
  }
  
  @media (max-width: 768px) {
    nav ul {
      display: none;
      flex-direction: column;
      width: 100%;
      text-align: center;
      position: absolute;
      top: 70px;
      left: 0;
      background-color: #222;
      z-index: 1;
      li {
        margin: 15px 0;
      }
    }
    .nav-open {
      ul {
        display: flex;
      }
    }
    .nav-toggle {
      display: flex;
    }
  }
  