* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #ffffff;
  color: #1a1a1a;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff8f0;
  border-bottom: 1px solid #e0e0e0;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #e65100;
}

.navbar nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #e65100;
  font-weight: 500;
}

.navbar nav a:hover {
  color: #bf360c;
}

/* HERO SECTION */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  background: #ffffff;
}

.hero-text {
  flex: 1 1 400px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 800;
  color: #bf360c;
}

.hero-text p {
  margin: 20px 0;
  font-size: 18px;
  color: #444;
}

.cta-btn {
  padding: 14px 32px;
  background: #e65100;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #bf360c;
}

.hero-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* FEATURES */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px;
  background: #fff8f0;
}

.feature-card {
  text-align: center;
  width: 260px;
}

.feature-card img {
  width: 60px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  color: #bf360c;
  margin-bottom: 10px;
}

.feature-card p {
  color: #555;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #ffe0b2;
  color: #e65100;
  font-size: 14px;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar nav {
    margin-top: 10px;
  }

  .navbar nav a {
    margin: 5px 10px 0 0;
  }
}