* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
}

.container {
  max-width: 1200px;
  display: flex;
  gap: 70px;
  align-items: center;
}

.image-section img {
  width: 450px;
  max-width: 100%;
  display: block;
}

.content-section {
  max-width: 500px;
}

h1 {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 30px;
  font-weight: 600;
}

.subhead {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 500;
}

.body-copy {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  margin-top: 14px;
  padding: 18px 42px;
  border: 2px solid white;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: white;
  color: black;
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  h1 {
    font-size: 2.8rem;
  }

  .subhead {
    font-size: 1.2rem;
  }

  .body-copy {
    font-size: 1rem;
  }

  .image-section img {
    width: 350px;
  }
}