
.hero-banner {
  background: #e3e6e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}

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

.hero-content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.hero-img {
  width: 300px;
  max-width: 100%;
}

/* Button */
.btn {
  background: #ffa41c;
  color: black;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.btn.large {
  padding: 12px 30px;
  font-size: 16px;
  margin-top: 10px;
}

/* Features */
.features {
  text-align: center;
  padding: 40px 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.feature-box {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.feature-box img {
  width:80%;
  margin-bottom: 10px;
}

.feature-box h4 {
  margin-bottom: 8px;
}

/* Plans */
.plans {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
}

.plan-box {
  margin-bottom: 20px;
}

.plan-box h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

/* CTA */
.cta {
  background: #ffe9c2;
  text-align: center;
  padding: 40px 20px;
}




/* Responsive */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-box {
    width: 100%;
    margin-top: 10px;
  }

  .hero-banner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding: 10px;
  }

  .hero-img {
    margin-top: 20px;
  }
}
