body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
}

.hero {
  height: 100vh;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem;
  z-index: 1;
}

.hero h1, .hero p, .hero a {
  z-index: 2;
  position: relative;
}

video.object-fit-cover {
  object-fit: cover;
  opacity: 1;
}

.btn-primary {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 2rem;
  margin-top: 2rem;
}

.feature-card {
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

