body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #333;
}

header {
  background-color: #e57004;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  flex-wrap: wrap;
}

header img {
  height: 60px;
  background-color: white;
  padding: 5px;
  border-radius: 4px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
}

.hero {
  background: url('https://i.ibb.co/LD5RJrXZ/chtr-cheaptrip.jpg') center/cover no-repeat;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero div {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.features li {
  margin-bottom: 15px;
}

.cta {
  text-align: center;
  margin-top: 40px;
}

.cta button {
  background-color: #e57004;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
}

footer {
  background-color: #4b8b9e;
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
  color: white;
}

footer img {
  height: 30px;
  margin-top: 10px;
  background-color: white;
  padding: 4px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta button {
    width: 100%;
    max-width: 300px;
  }
}