*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f4f7fb;
color:#111827;
}

.topbar{
height:70px;
background:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 30px;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.logo{
font-size:20px;
font-weight:700;
}

.logo-img{

height:80px;

width:auto;

display:block;

}

.lang{
font-size:14px;
color:#6b7280;
}

.hero{
position:relative;
height:650px;
overflow:hidden;
}

.hero-image{
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;

background:rgba(0,0,0,.45);

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

text-align:center;

color:white;
}

.hero-overlay h1{
font-size:52px;
margin-bottom:15px;
}

.hero-overlay p{
font-size:20px;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:15px;
}

.btn-primary,
.btn-secondary{

padding:14px 28px;

border-radius:12px;

text-decoration:none;

font-weight:700;

transition:.2s;
}

.btn-primary{
background:#2563eb;
color:white;
}

.btn-secondary{
background:white;
color:#111827;
}

.btn-primary:hover,
.btn-secondary:hover{
transform:translateY(-2px);
}

.features{

max-width:1200px;

margin:50px auto;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:20px;

padding:0 20px;
}

.card{

background:white;

padding:25px;

border-radius:18px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

text-align:center;
}

.card h3{
margin:15px 0;
}

.menu{

display:flex;
gap:20px;
align-items:center;

}

.menu a{

text-decoration:none;
font-weight:600;
color:#374151;

}

.menu a:hover{

color:#2563eb;

}

.footer{

margin-top:60px;

padding:25px;

background:white;

border-top:1px solid #e5e7eb;

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

}

.footer-links{

display:flex;

gap:20px;

}

.footer-links a{

text-decoration:none;

color:#6b7280;

}

.footer-links a:hover{

color:#2563eb;

}
@media (max-width: 768px) {

    .topbar{
        flex-direction:column;
        align-items:center;
        height:auto;
        padding:15px;
    }

.menu{
    margin-top:10px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    width:100%;
}

.menu a{
    font-size:16px;
    white-space:nowrap;
}

    .logo-img{
        height:60px;
    }

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

}
.menu-toggle{
    display:none;
}

@media (max-width:992px)

    .topbar{
        display:flex;
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
    }

    .menu-toggle{
        display:block;
        background:none;
        border:none;
        font-size:32px;
        cursor:pointer;
    }

.menu{
    display:none !important;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:white;
    flex-direction:column;
    padding:20px;
    box-shadow:0 4px 10px rgba(0,0,0,.15);
    z-index:99999;
}

.menu.active{
    display:flex !important;
}

}
