* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero {
  background:no-repeat center center/cover;
  background-image: url("bg-image.jpg");
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  background-color: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 10px;
}

.hero p {
  margin-top: 20px;
  font-size: 1.2rem;
  max-width: 600px;
  background-color: rgba(0,0,0,0.5);
  padding: 15px;
  border-radius: 8px;
}

.cta-button {
  margin-top: 30px;
  padding: 12px 25px;
  font-size: 1rem;
  color: white;
  background-color: #28a745;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #218838;
}

footer {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 0.9rem;
  text-shadow: 1px 1px 2px #000;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 10px 20px;
  }
}