/* Reset + Grundlayout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .apple-nav {
    width: 100%;
    height: 44px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  
  /* Navigation Liste */
  .nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
    transition: max-height 0.3s ease;
  }
  
  .nav-list li a {
    text-decoration: none;
    color: #1d1d1f;
    font-size: 16px;
    font-weight: 400;
    line-height: 44px;
    transition: color 0.3s ease;
  }
  
  .nav-list li a:hover {
    color: #0071e3;
  }
  
  /* Burger Menü */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    position: absolute;
    right: 20px; /* <- Rechtsbündig */
  }
  
  .burger span {
    display: block;
    height: 2px;
    background-color: #333;
    border-radius: 1px;
  }
  
  /* Mobile Style */
  @media (max-width: 768px) {
    .nav-list {
      position: absolute;
      top: 44px;
      left: 0;
      width: 100%;
      flex-direction: column;
      background-color: rgba(245, 245, 247, 0.95);
      max-height: 0;
      overflow: hidden;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
  
    .nav-list.open {
      max-height: 500px;
    }
  
    .nav-list li a {
      font-size: 18px;
      line-height: 40px;
      padding: 15px 20px;
    }
  
    .burger {
      display: flex;
    }
  }
  