/* ===========================
   StartPage‐Styles
   =========================== */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 80vh;
  padding: 2rem;
  max-width: 100%;
  flex: 1;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
}

.btn-primary,
.btn-secondary {
  width: 100%;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}

.btn-primary {
  background-color: #C60000;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  color: white;
}

.btn-secondary {
  background: transparent;
  padding: 0.75rem 1.5rem;
  border: 2px solid white;
  border-radius: 0.5rem;
  color: white;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
li::before {
  content: "★ ";
  color: #fff;
}

.howitworks-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 2rem;
  max-width: 100%;
  flex: 1;
  text-align: center;
}

.video-container video {
  width: 100%;
  height: auto;
  max-width: 720px;
}

@media (max-width: 480px) {
  .video-container video {
    max-width: 100%;
  }
}

@media(min-width: 768px) {
  .hero {
    padding: 0 10rem;
    max-width: 800px;
  }
  .hero h1 { font-size: 3rem; }
  .hero p  { font-size: 1.25rem; }
  .buttons {
    flex-direction: row;
    width: auto;
  }
  .btn-primary,
  .btn-secondary {
    width: auto;
  }
}