body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  background: #f8f8f8;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
header {
  background: #111;
  color: white;
  padding: 20px 0;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}
.hero {
  background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: white;
  text-align: center;
  padding: 120px 20px;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #c8a96b;
  color: white;
  text-decoration: none;
  border: none;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
  padding: 50px 0;
}
.card {
  background: white;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
}
form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
}
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: white;
  margin-top: 40px;
}
