body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  /* default background – let the video itself provide the colour */
  background: none;
  line-height: 1.6;
}

html {
  margin: 0;
  padding: 0;
  background: none;
}
header {
  background: #222;
  color: #fff;
  padding: 1rem 2rem;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}
header h1 {
  margin: 0;
  font-size: 1.5rem;
}
header nav a {
  color: #fff;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: bold;
}
header .tagline {
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}
.container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}
main {
  padding: 1rem 0;
}
.intro {
  text-align: center;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.intro h2 {
  margin-top: 0;
}
.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.feature-list li {
  background: #fff;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  text-align: center;
}
.button {
  display: inline-block;
  background: #0078d4;
  color: white;
  padding: .75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}
.button:hover {
  background: #005a9e;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #eee;
  /* make footer static so it doesn't interfere with scrolling */
  position: relative;
  width: 100%;
  bottom: 0;
}

/* ensure scrolling is always available */
html, body {
  height: auto;
  overflow-y: auto;
}

/* new layout adjustments for simplified page */
.video-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}
.video-container video {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.cta {
  text-align: center;
  margin: 2rem 0;
}
.button.big {
  font-size: 1.25rem;
  padding: 1rem 2rem;
}

/* full screen background video/gif settings */
.video-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
  object-fit: cover;
}
.overlay-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.button.big {
  font-size: 1.5rem;
  padding: 1.25rem 2.5rem;
}
