body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0f0f0f;
  color: white;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1581276879432-15e50529f34b') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.cta-btn {
  background: linear-gradient(90deg, #ff512f, #dd2476);
  padding: 15px 30px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(255, 81, 47, 0.6);
}

.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  flex-wrap: wrap;
  background: #181818;
}

.feature {
  flex: 1 1 250px;
  background: #202020;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  background: #2a2a2a;
}

footer {
  text-align: center;
  padding: 20px;
  background: #0f0f0f;
  font-size: 0.9rem;
  color: #ccc;
}
