body{
margin:0;
font-family: Georgia, serif;
background:#f8f6f4;
color:#4a3f3f;
line-height:1.6;
}

.container{
width:90%;
max-width:900px;
margin:auto;
text-align:center;
}

.logo{
width:260px;
margin-bottom:25px;
}

.hero{
background:#f5efe9;
padding:80px 20px;
}

.hero h1{
font-size:36px;
font-weight:500;
margin-bottom:10px;
color:#5e4b4b;
}

.hero-text{
font-size:18px;
max-width:550px;
margin:auto;
margin-bottom:30px;
}

.button{
display:inline-block;
padding:14px 26px;
background:#b89c9c;
color:white;
text-decoration:none;
border-radius:30px;
transition:0.3s;
}

.button:hover{
background:#a68b8b;
}

section{
padding:70px 20px;
}

h2{
font-size:30px;
margin-bottom:20px;
color:#6b5a5a;
}

.about{
background:#ffffff;
}

.services{
background:#f5efe9;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:30px;
}

.service-card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.06);
}

.philosophy{
background:#ffffff;
}

.contact{
background:#f5efe9;
}

.contact-form{
max-width:450px;
margin:auto;
display:flex;
flex-direction:column;
gap:12px;
margin-top:25px;
}

input, textarea{
padding:12px;
border-radius:8px;
border:1px solid #ddd;
font-family:inherit;
}

textarea{
min-height:120px;
}

button{
background:#b89c9c;
border:none;
padding:14px;
color:white;
border-radius:30px;
font-size:16px;
cursor:pointer;
}

button:hover{
background:#a68b8b;
}

footer{
text-align:center;
padding:30px;
background:#f1ebe6;
font-size:14px;
color:#777;
}