.hero h1 {
  text-align: center;
  font-size: 2.5rem;
  margin: 2rem 0;
  color: #222;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.hero-image img {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
}

.hero-text {
  max-width: 500px;
  font-size: 1.2rem;
  color: #333;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
  .hero-image img {
    max-width: 100%;
  }
}
