*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, sans-serif;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
    background:#ffffff;
    padding:20px 0;
    border-bottom:1px solid #e5e5e5;

    position:sticky;
    top:0;
    z-index:1000;

    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
    font-size:32px;
    font-weight:800;
    color:#0066ff;
    letter-spacing:-1px;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav a{
text-decoration:none;
color:#333;
font-weight:500;
}

.hero{
height:80vh;
display:flex;
align-items:center;
text-align:center;
background:#f5f7fa;
position:relative;
overflow:hidden;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:30px;
}

.btn{
display:inline-block;
background:#0066ff;
color:white;
padding:14px 30px;
border-radius:8px;
text-decoration:none;
}
.hero{
min-height:85vh;
display:flex;
align-items:center;
text-align:center;
background:linear-gradient(
135deg,
#0066ff,
#00a2ff
);
color:white;
}

.hero h1{
font-size:56px;
margin-bottom:20px;
}

.hero p{
max-width:800px;
margin:0 auto 30px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
}

.hero::before{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:rgba(255,255,255,.1);

    border-radius:50%;

    top:-150px;
    right:-150px;
}

.btn{
background:white;
color:#0066ff;
font-weight:bold;
transition:0.3s;
}

.btn-secondary{
background:transparent;
color:white;
border:2px solid white;
}

.btn:hover{
    transform:translateY(-3px);
}

.features{
padding:80px 0;
}

.features h2{
text-align:center;
margin-bottom:50px;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 4px 15px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);

box-shadow:
0 15px 30px rgba(0,0,0,.15);
}

.card h3{
margin-bottom:15px;
}

footer{
background:#0f172a;
color:white;
text-align:center;
padding:40px 0;
margin-top:60px;
}
@media(max-width:768px){

    nav ul{
        flex-direction:column;
        gap:10px;
    }

    .hero h1{
        font-size:36px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .news-grid{
        grid-template-columns:1fr;
    }

}
.stats{
    background:#0066ff;
    color:white;
    padding:70px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.stat-box h3{
    font-size:42px;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
}
.news{
    padding:80px 0;
}

.news h2{
    text-align:center;
    margin-bottom:40px;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.news-card{
    background:white;
    padding:25px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.news-card h3{
    margin-bottom:15px;
}
.language-switcher{
    display:flex;
    gap:8px;
    align-items:center;
}

.language-switcher a{
    text-decoration:none;
    color:#0066ff;
    font-weight:bold;
}
.mission{
    padding:80px 0;
    text-align:center;
    background:#f8fafc;
}

.mission h2{
    margin-bottom:20px;
    font-size:36px;
}

.mission p{
    max-width:800px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
}