
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#F5EBDC;
  color:#6A4A2F;
}
header{
  background:#F5EBDC;
  border-bottom:2px solid #C9A27C;
  padding:15px;
}
nav{
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
nav a{
  text-decoration:none;
  color:#6A4A2F;
  font-weight:bold;
  margin-left:20px;
}
.hero{
  max-width:1100px;
  margin:40px auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  padding:20px;
}
.hero-box{
  background:#E9D8C8;
  height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:bold;
  border-radius:12px;
}
.section{
  max-width:1100px;
  margin:60px auto;
  padding:20px;
}
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}
.card{
  background:#F3E7D8;
  padding:20px;
  border-radius:14px;
  text-align:center;
  border:1px solid #C9A27C;
}
.card-img{
  background:#D9C3A6;
  height:180px;
  margin-bottom:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
}
button, .btn{
  background:#9C6B39;
  color:white;
  padding:12px 20px;
  border:none;
  border-radius:10px;
  font-weight:bold;
  cursor:pointer;
  text-decoration:none;
  display:inline-block;
}
footer{
  background:#E9D8C8;
  padding:30px;
  text-align:center;
  border-top:2px solid #C9A27C;
}
@media(max-width:800px){
  .hero{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
}
