* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #fff;
  background: #0a0a0a;
}

.hero {
  background: url('images/background.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.logo {
  width: 180px;
  margin-bottom: 30px;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffcc00;
}

.content h1 span {
  color: #fff;
}

.content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #ffcc00;
  color: #000;
  padding: 14px 36px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 40px;
  transition: 0.3s;
}

.cta-button:hover {
  background-color: #e6b800;
}

.features {
  background: #111;
  display: flex;
  justify-content: space-around;
  padding: 60px 20px;
  flex-wrap: wrap;
  text-align: center;
}

.feature {
  max-width: 300px;
  margin: 20px;
}

.feature h2 {
  color: #ffcc00;
  margin-bottom: 15px;
}

footer {
  background: #000;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #aaa;
}
