
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0d0d0d;
  color: #fff;
  line-height: 1.6;
}

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

.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  color: #ff4500;
}

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

.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  background: #ff4500;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #cc3700;
}

section {
  padding: 60px 20px;
  text-align: center;
}

section h2 {
  color: #ffd700;
  margin-bottom: 20px;
}

ul, ol {
  list-style: none;
  padding: 0;
}

footer {
  text-align: center;
  padding: 20px;
  background: #1a1a1a;
  color: #fff;
}
