* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f6f1ea;
  color: #2b2b2b;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #2f1f1c;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
}

.nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav a:hover {
  text-decoration: underline;
}

/* HERO */
.hero {
  text-align: center;
  padding: 90px 20px;
  background: url("https://images.unsplash.com/photo-1509042239860-f550ce710b93") center/cover;
  color: white;
}

.hero h1 {
  font-size: 3rem;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.dark {
  background: #3a2a26;
  color: white;
}

/* CARDS */
.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 250px;
}

/* IMAGE BOX */
.img-box img {
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
}

/* MACHINE SECTION */
.machine {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.machine img {
  width: 300px;
  border-radius: 10px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #2f1f1c;
  color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

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

  .nav {
    justify-content: center;
  }
}