body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: black;
  color: white;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: black;
}

.hero-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 72% 38% !important;
  display: block !important;
}
}

.hero-buttons {
  position: absolute !important;
  left: 50% !important;
  bottom: 120px !important;
  transform: translateX(-50%) !important;
  z-index: 999 !important;
}

.btn {
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  display: inline-block;
}

.primary {
  background: orange;
  color: black;
}

.secondary {
  border: 1px solid white;
  color: white;
  background: rgba(0, 0, 0, 0.3);
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.section.dark {
  background: #111;
}
