.hero {
  background: url('https://via.placeholder.com/1500x600') no-repeat center center;
  background-size: cover;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 30px;
  background: orange;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.trails-section {
  padding: 50px 20px;
  background: #f9f9f9;
}

.trail-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.trail-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
