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

body{
    background:#10131a;
    color:white;
    line-height:1.6;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#171c26;
    position:sticky;
    top:0;
}

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

nav a{
    text-decoration:none;
    color:white;
    margin-left:30px;
    transition:.3s;
}

nav a:hover{
    color:#FFD400;
}

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:80px 8%;
    gap:60px;
    flex-wrap:wrap;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero-text p{
    max-width:550px;
    margin-bottom:30px;
    color:#cccccc;
}

.btn{
    background:#ff3d3d;
    color:white;
    padding:15px 35px;
    text-decoration:none;
    border-radius:40px;
    transition:.3s;
    display:inline-block;
}

.btn:hover{
    background:#FFD400;
    color:#111;
    transform:translateY(-4px);
}

.hero-image{
    flex:1;
}

.hero-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    padding:60px 8%;
}

.card{
    background:#1b2230;
    padding:30px;
    border-radius:15px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
    background:#232d3f;
}

.card h2{
    margin-bottom:15px;
    color:#FFD400;
}

.about{
    width:80%;
    max-width:900px;
    margin:auto;
    padding:80px 0;
    text-align:center;
}

.about h1{
    font-size:48px;
    margin-bottom:25px;
}

.about p{
    margin-bottom:25px;
    color:#d0d0d0;
}

.stats{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:50px;
}

.stat{
    background:#1b2230;
    padding:35px;
    width:220px;
    border-radius:15px;
}

.stat h2{
    color:#FFD400;
    font-size:40px;
}

footer{
    padding:25px;
    text-align:center;
    background:#171c26;
    margin-top:60px;
}

@media(max-width:768px){

.hero{
    flex-direction:column;
    text-align:center;
}

.hero-text h1{
    font-size:42px;
}

nav a{
    margin-left:15px;
}

}