/* Base layout */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  margin: 0 auto;
  padding: 1rem;
  max-width: 700px;
  font-size: 17px;
  color: #111;
  background: #fff;
}

/* Navigation */
nav {
  text-align: center;
  background: none;
  padding: 0.5rem 0.25rem;
  margin-bottom: 2rem;
  border-radius: 6px;
}

nav a {
  display: inline-block;
  margin: 0.3rem 0.4rem;
  padding: 0.4rem 0.6rem;
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  background-color: #f3f3f3;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}





/* Headings */
h1 {
  font-size: 2rem;
  margin-top: 0.5rem;
  line-height: 1.3;
}
h2 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
}

/* Paragraphs & lists */
p, li {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

/* Responsive iframe (for YouTube or Calendly embeds) */
iframe {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
}

/* Responsive wrapper for YouTube embeds */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Calendly */
.calendly-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
}
.calendly-wrapper iframe {
  width: 100%;
  height: 900px;
  border: none;
}

/* Background canvas */
#flowCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Mobile adjustments */
@media screen and (max-width: 600px) {
  body {
    font-size: 16px;
    line-height: 1.7;
    padding: 1rem;
  }

  h1 {
    font-size: 1.3rem;
  }

  h2 {
    font-size: 1.15rem;
  }

  h3 {
    font-size: 1rem;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
    justify-items: center;
    margin-bottom: 0.5rem;
  }

  nav a {
    display: block;
    padding: 0.3rem 0.05rem;
    font-size: 0.8rem;
    background-color: #f3f3f3;
    color: #222;
    text-decoration: none;
    border-radius: 4px;
    width: 100%;
    text-align: center;
  }


  
  p, li {
    font-size: 1.05rem;
  }

  .calendly-wrapper iframe {
    height: 1200px;
  }
}

