* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.hero-section {
  width: 100%;
  min-height: 400px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.hero-content {
  width: 100%;
  max-width: 1100px;
  padding-left: 60px;
}

.hero-content h1 {
  color: white;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 650px;
}

/* Tablet */
@media (max-width: 992px) {
  .hero-section {
    min-height: 320px;
  }

  .hero-content {
    padding-left: 30px;
  }

  .hero-content h1 {
    font-size: 2.3rem;
    max-width: 500px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-section {
    min-height: 250px;
    padding: 40px 15px;
  }

  .hero-content {
    padding-left: 10px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.4;
    max-width: 100%;
  }
}
