/* Hero 001 — Clean + Minimal */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f6f6f6;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  min-height: 100vh;
  padding: 2rem;

  background: linear-gradient(to bottom right, #ffffff, #eeeeee);
  text-align: center;
}

.hero > * {
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.6;
  color: #111;
}

.cta-btn {
  background: black;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cta-btn:hover {
  opacity: 0.85;
}

@media (max-width: 500px) {
  .hero {
    padding: 3rem 1.5rem;
  }
}
