* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: white;
  background-color: black;
  height: 100%;
}
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.logo {
  height: 40px;
}
nav a {
  color: white;
  margin-left: 2rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 5%;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.9;
  z-index: 1;
}
.hero-content {
  z-index: 2;
  max-width: 600px;
}
.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background-color: white;
  color: black;
}
