/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', sans-serif;
  }
  
  body {
    background-color: #fff;
    color: #111;
    line-height: 1.6;
    padding: 2rem;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
  }
  
  nav h1 {
    font-size: 2rem;
    color: #0055ff; /* Electric blue */
  }
  
  nav a {
    text-decoration: none;
    color: #111;
    font-weight: bold;
    padding: 0.5rem 1rem;
  }
  
  main {
    text-align: center;
  }
  
  main h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  main p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  footer {
    text-align: center;
    margin-top: 4rem;
    color: #666;
  }
  
  /* Optional: Style the Klaviyo form wrapper */
  .klaviyo-form {
    
  }
  