:root {
    --blue: #2563eb;
    --gray: #6b7280;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', sans-serif;
  }

  body {
    padding: 0 5rem;
    background: white;
    color: black;
    line-height: 1.6;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
  }

  .burger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
  }

  .logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .logo img {
    height: 40px;
    margin-right: 0.75rem;
  }

  .logo:hover {
    opacity: 0.7;
  }

  .nav-links {
    display: flex;
    gap: 1.5rem;
  }

  .nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
  }

  .nav-links a:hover {
    color: var(--blue);
  }

  .legal {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
  }

  .legal h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
  }

  .legal h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
  }

  .legal p {
    color: var(--gray);
    margin-bottom: 1rem;
  }

  footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: var(--gray);
  }

  footer a {
    color: var(--gray);
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: bold;
    transition: color 0.3s ease;
  }

  footer a:hover {
    color: var(--blue);
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    body {
      padding: 0 1.5rem;
    }

    .burger {
        display: block;
      }
  
      .nav-links {
        display: none;
        flex-direction: column;
        gap: 2rem;
        position: absolute;
        top: 100%;
        right: 0;
        font-size: 1.2rem;
        background: white;
        padding: 3rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        z-index: 10;
      }
  
      .nav-links.active {
        display: flex;
      }
  }