*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f8f5ef;
    color:#333;
}

header{
    background:#8b4513;
    color:white;
    padding:15px 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.logo-area h1{
    margin-bottom:5px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-weight:bold;
}

nav a:hover{
    color:#ffd700;
}

.hero{
    text-align:center;
    padding:20px;
}

.hero img{
    width:100%;
    height:auto;
    object-fit:contain;
    border-radius:10px;
    display:block;
}

.hero-content{
    margin-top:25px;
}

.hero-content h2{
    font-size:40px;
    color:#8b4513;
    margin-bottom:15px;
}

.hero-content p{
    font-size:18px;
    margin-bottom:25px;
}

.btn{
    display:inline-block;
    background:#8b4513;
    color:white;
    text-decoration:none;
    padding:12px 25px;
    border-radius:6px;
    margin:5px;
}

.btn:hover{
    background:#a0522d;
}

.features{
    padding:50px 20px;
}

.features h2{
    text-align:center;
    margin-bottom:30px;
    color:#8b4513;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.card{
    background:white;
    padding:30px;
    border-radius:10px;
    text-align:center;
    box-shadow:0px 2px 10px rgba(0,0,0,0.15);
    font-weight:bold;
}

footer{
    background:#8b4513;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}