body {
  margin: 0;
  padding: 0;
  background: #151515;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  min-height: 100vh;
}

.container {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90vw;
  max-width: 1200px;
  padding: 40px 0;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  margin: 0 0 32px 0;
  line-height: 1.1;
}

.subtitle {
  font-size: 1.25rem;
  color: #d1d1d1;
  margin-bottom: 48px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 300;
}

.buttons {
  display: flex;
  gap: 32px;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid #fff;
  border-radius: 40px;
  color: #fff;
  background: transparent;
  font-size: 1.1rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: #fff;
  color: #151515;
}

.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 630px;
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }
  .hero-image {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }
  .hero {
    padding: 24px 0;
  }
  .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
  .buttons {
    gap: 16px;
  }
  .hero-image img {
    max-width: 260px;
  }
} 