body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Header styles */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: white;
  padding: 20px 10px;
  flex-direction: column;
}

.logo {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Sidebar for mobile */
.sidebar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 250px;
  background-color: #333;
  padding-top: 20px;
  flex-direction: column;
  z-index: 1000;
}

.sidebar a {
  padding: 10px;
  text-decoration: none;
  color: white;
  display: block;
  text-align: center;
}

.sidebar a:hover {
  background-color: #575757;
}

.menu-toggle {
  display: block;
  font-size: 1.5em;
  cursor: pointer;
  color: white;
  position: absolute;
  top: 15px;
  left: 15px;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Banner styles */
.banner {
  position: relative;
  height: 90vh;
  background: url('truck.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.banner-content {
  text-align: center;
}

.banner-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  /* Adjust spacing between buttons */
}

.buttons a {
  padding: 10px 15px;
  /* Reduce padding for smaller screens */
  font-size: 1em;
  /* Adjust font size */
  color: white;
  text-decoration: none;
  background-color: #007bff;
  border-radius: 5px;
  transition: background-color 0.3s;
  flex: 1 1 calc(50% - 20px);
  /* Make buttons responsive */
  max-width: 200px;
  /* Optional: Add a max width */
  text-align: center;
}

.buttons a:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .buttons a {
    flex: 1 1 calc(100% - 20px);
    /* Stack buttons on smaller screens */
  }
}

/* Features section styles */
.features {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.features h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 300px;
  text-align: center;
}

.feature img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.feature p {
  font-size: 1em;
  color: #ff5900;
}

/* Contact section styles */
.contact {
  background-color: #333;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.contact-info {
  font-size: 1.2em;
}

.contact-info p {
  margin: 10px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
    align-items: center;
  }
}

.features-container a {
  text-decoration: none;
  color: inherit;
}

.features-container a:hover {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
