body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9fafb;
  color: #333;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4em;
  background: #ffffff;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 3em;
  color: #4F46E5;
  margin: 0;
}

.hero-text h2 {
  font-size: 1.5em;
  font-weight: 400;
  color: #111827;
}

.hero-text p {
  margin: 1em 0;
  line-height: 1.5;
}

.hero-buttons .btn {
  display: inline-block;
  margin-right: 1em;
  padding: 0.75em 1.5em;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn.primary {
  background-color: #111827;
  color: #ffffff;
}

.btn.secondary {
  background-color: #ffffff;
  color: #111827;
  border: 2px solid #111827;
}

.hero-image img {
  max-width: 300px;
  border-radius: 15px;
}
