
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #222;
}
header {
  background: #001f3f;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.logo img {
  height: 40px;
}
nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  background: url('TRUCKER IMAGE.png') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.cta-button {
  background: gold;
  color: black;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
}
section {
  padding: 60px 20px;
}
.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.image-grid img {
  width: 300px;
  height: auto;
  border-radius: 12px;
}
form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
form input, form textarea, form button {
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}
form button {
  background: #001f3f;
  color: white;
  border: none;
  font-weight: bold;
}
footer {
  text-align: center;
  background: #222;
  color: white;
  padding: 30px 20px;
}
