*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#fff;
    color:#333;
}

header{
    background:#0F172A;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 8%;
}

.logo{
    color:#D4A017;
    font-size:28px;
    font-weight:bold;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 10px;
}

#langBtn{
    background:#D4A017;
    border:none;
    color:white;
    padding:8px 14px;
    cursor:pointer;
}

.hero{
    background:#0F172A;
    color:white;
    text-align:center;
    padding:120px 20px;
}

.hero h1{
    font-size:48px;
    margin-bottom:15px;
}

.section-title{
    text-align:center;
    margin-bottom:30px;
    color:#0F172A;
}

section{
    padding:60px 8%;
}

.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    border:1px solid #ddd;
    border-radius:10px;
    overflow:hidden;
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card h3{
    padding:15px;
    text-align:center;
}

#contact{
    text-align:center;
    background:#f5f5f5;
}

.whatsapp{
    display:inline-block;
    margin-top:15px;
    padding:12px 20px;
    background:#25D366;
    color:white;
    text-decoration:none;
    border-radius:6px;
}

footer{
    background:#0F172A;
    color:white;
    text-align:center;
    padding:20px;
}

@media(max-width:768px){

.hero h1{
    font-size:32px;
}

header{
    flex-direction:column;
    gap:15px;
}

}