body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  color: #333;
}
header {
  background: #e60012;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
header img {
  height: 40px;
  filter: brightness(0) invert(1);
}
header nav {
  display: flex;
  flex-wrap: wrap;
}
header nav a {
  color: #fff;
  text-decoration: none;
  margin: 5px 10px;
  font-weight: bold;
}
header nav a:hover {
  text-decoration: underline;
}
.hero {
  position: relative;
  height: 70vh;
  background: url('https://www.hondacarindia.com/content/dam/honda/in/en/images/banner/home/Honda-Elevate-banner.jpg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}
.hero h1, .hero p, .hero button {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 42px;
  margin: 0;
}
.hero p {
  font-size: 20px;
  margin: 15px 0;
}
.hero button {
  padding: 12px 24px;
  background: #e60012;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
}
.hero button:hover {
  background: #b5000d;
}
.container {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}
h2 {
  color: #e60012;
}
.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}
.feature-box {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  text-align: center;
}
.feature-box img {
  height: 50px;
  margin-bottom: 10px;
}
footer {
  background: #e60012;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}
@media(max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  header nav {
    margin-top: 10px;
  }
}
