body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #eee;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
  border-bottom: 1px solid #333;
}

.logo {
  font-size: 1.8rem;
  color: #D4AF37;
  font-weight: bold;
  letter-spacing: 2px;
}

.nav-links a {
  color: #eee;
  margin-left: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #D4AF37;
}

.hero {
  height: 90vh;
  background: url('hero-bg.jpg') no-repeat center center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #D4AF37;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #D4AF37;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

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

.features {
  display: flex;
  justify-content: space-around;
  padding: 3rem 2rem;
  background-color: #1a1a1a;
  flex-wrap: wrap;
}

.feature-box {
  width: 300px;
  margin: 1rem;
  padding: 1rem;
  background-color: #222;
  border: 1px solid #333;
  border-radius: 8px;
}

.footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #000;
  color: #999;
}