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

body{
    background:#111;
    color:white;
}

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

.logo{
    font-size:28px;
    font-weight:bold;
    color:#ff2d2d;
}

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

nav a:hover{
    color:#ff2d2d;
}

.language button{
    padding:8px 15px;
    margin-left:8px;
    border:none;
    cursor:pointer;
    background:#ff2d2d;
    color:white;
    border-radius:5px;
}

.hero{
    height:65vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:linear-gradient(#111,#222);
}

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

.hero p{
    max-width:800px;
    font-size:22px;
}

section{
    padding:70px 10%;
}

h2{
    color:#ff2d2d;
    margin-bottom:30px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.card{
    background:#1f1f1f;
    padding:20px;
    border-radius:10px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
}

table{
    width:100%;
    border-collapse:collapse;
}

th,td{
    border:1px solid #444;
    padding:12px;
}

th{
    background:#ff2d2d;
}

ul{
    margin-left:20px;
}

li{
    margin:10px 0;
}

footer{
    text-align:center;
    padding:20px;
    background:#1a1a1a;
}
