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

body{
font-family:Arial,Helvetica,sans-serif;
background:#fff8f3;
color:#333;
line-height:1.6;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

.site-header{
background:#ffffff;
border-bottom:1px solid #eee;
}

.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
flex-wrap:wrap;
}

.logo a{
font-size:24px;
font-weight:bold;
text-decoration:none;
color:#5a3e36;
}

.nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

.nav a{
margin:10px;
text-decoration:none;
color:#5a3e36;
font-weight:bold;
}

.nav a:hover{
color:#c8a27a;
}

.hero{
padding:80px 0;
text-align:center;
background:#f6e9e3;
}

.hero h1{
font-size:40px;
margin-bottom:10px;
}

.section{
padding:60px 0;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:#ffffff;
border:1px solid #eee;
padding:15px;
text-align:center;
}

.card img{
width:100%;
height:auto;
}

.site-footer{
margin-top:40px;
padding:20px 0;
background:#ffffff;
border-top:1px solid #eee;
text-align:center;
}

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

button{
background:#5a3e36;
color:white;
border:none;
padding:10px 20px;
cursor:pointer;
}

button:hover{
background:#c8a27a;
}

@media(max-width:768px){

.hero h1{
font-size:30px;
}

}