body {
    background: #ffffff;
    color: #171717;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
  }
  
  .logo {
    font-size: 0.9rem;
    font-weight: 500;
    color: black;
    text-decoration: none;
    letter-spacing: 0.05em;
  }
  
  .header-buttons .button {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
    text-decoration: none;
  }
  
  .header-buttons .button:hover {
    color: black;
    border-color: #aaa;
  }
  
  .main {
    max-width: 600px;
    margin: 4rem auto;
    padding: 0 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .main ol {
    padding-left: 1.2rem;
  }
  
  .demo-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #444;
    text-decoration: underline;
  }
  
  .demo-link:hover {
    color: black;
  }
  
  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    font-size: 0.75rem;
    color: #aaa;
    text-align: center;
    background: white;
  }
  