
body {
  margin: 0;
  font-family: 'Arial Black', sans-serif;
  background-color: #111;
  color: white;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: #000;
  flex-wrap: wrap;
}
.logo {
  font-size: 26px;
  font-weight: bold;
}
nav {
  display: flex;
  gap: 20px;
}
nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}
nav a:hover {
  color: #f04f2a;
}
.hero {
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.hero .overlay {
  background-color: rgba(0,0,0,0.6);
  padding: 40px 20px;
}
.hero h1 {
  font-size: 36px;
  line-height: 1.3;
}
button {
  background-color: #f04f2a;
  border: none;
  color: white;
  padding: 12px 24px;
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}
.intro {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}
.intro h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.intro p {
  font-size: 16px;
  line-height: 1.6;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: #888;
  font-size: 14px;
}
