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

body{
background:#221d18;
font-family:Arial,Helvetica,sans-serif;
color:#f5efe4;
line-height:1.7;
}

header{
background:#171310;
padding:20px 40px;
display:flex;
justify-content:space-between;
align-items:center;
border-bottom:1px solid #6b4c2f;
position:sticky;
top:0;
z-index:100;
}

.logo{
font-size:30px;
font-weight:bold;
color:#d8a05c;
letter-spacing:2px;
}

nav a{
color:#ece3d5;
text-decoration:none;
margin-left:25px;
transition:.25s;
}

nav a:hover{
color:#d8a05c;
}

.hero{
padding:90px 20px;
text-align:center;
}

.hero h1{
font-size:56px;
color:#d8a05c;
margin-bottom:20px;
}

.hero p{
max-width:750px;
margin:auto;
font-size:20px;
color:#c9baa5;
}

.button{
display:inline-block;
margin-top:35px;
padding:14px 36px;
background:#a66b31;
color:white;
text-decoration:none;
border-radius:6px;
transition:.25s;
}

.button:hover{
background:#c88844;
}

.section{
padding:70px 30px;
}

.section h2{
text-align:center;
margin-bottom:40px;
font-size:36px;
color:#d8a05c;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
}

.card{
background:#2a241e;
padding:30px;
border-radius:10px;
transition:.25s;
text-align:center;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.card span{
font-size:60px;
display:block;
margin-bottom:15px;
}

.card h3{
margin-bottom:15px;
}

.card p{
color:#c5b49e;
}

.container{
max-width:1100px;
margin:auto;
padding:60px 25px;
}

.block{
background:#2a241e;
padding:35px;
border-radius:10px;
margin-bottom:30px;
}

footer{
margin-top:70px;
padding:40px;
background:#171310;
text-align:center;
color:#b8ab99;
font-size:15px;
}

table{
width:100%;
border-collapse:collapse;
margin-top:20px;
}

td,th{
padding:14px;
border-bottom:1px solid #3d342c;
}

input,textarea{

width:100%;
padding:12px;
margin-top:8px;
margin-bottom:20px;
background:#1c1815;
border:1px solid #5a4431;
color:white;
border-radius:5px;

}

button{

padding:14px 28px;
background:#a66b31;
color:white;
border:none;
border-radius:6px;
cursor:pointer;

}

button:hover{

background:#c88844;

}

@media(max-width:800px){

header{

flex-direction:column;

}

nav{

margin-top:15px;

}

.hero h1{

font-size:38px;

}

}
