
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 40px;
  background-color: #000;
  border-bottom: 2px solid #222;
}
.logo {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
}
nav a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
  font-size: 16px;
  transition: color 0.3s;
}
nav a:hover {
  color: #f04f2a;
}
.hero.fuel-hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero .overlay {
  background-color: rgba(0,0,0,0.6);
  padding: 40px;
  text-align: center;
}
.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}
.hero p {
  font-size: 18px;
  color: #ccc;
}
.fuel-content {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}
.fuel-block {
  background: #1c1c1c;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #333;
}
.fuel-block h2 {
  font-size: 24px;
  margin-bottom: 15px;
}
.fuel-block p {
  font-size: 16px;
  margin-bottom: 20px;
}
.fuel-block button {
  background-color: #f04f2a;
  border: none;
  color: white;
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 30px 20px;
  background: #000;
  color: #777;
  font-size: 14px;
}
