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

.header {
  background: #8B4513;
  color: white;
  padding: 20px;
  text-align: center;
}

.hero {
  background: url('../img/furniture-hero.jpg') no-repeat center center/cover;
  color: white;
  padding: 120px 20px;
  text-align: center;
}

.btn {
  background: #f39c12;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn:hover {
  background: #e67e22;
}

.services {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.about {
  padding: 50px 20px;
  background: #eaeaea;
}

.contact {
  padding: 50px 20px;
  background: #fff;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
}