*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#09090B;
    color:white;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.container{
    width:90%;
    max-width:900px;
    margin:auto;
    text-align:center;
    padding-top:40px;
    padding-bottom:60px;
}

.small-logo{
    width:90px;
    height:auto;
    display:block;
    margin:0 auto 20px auto;
}

h1{
    font-size:42px;
    margin-bottom:10px;
}

h2{
    margin-top:30px;
    margin-bottom:15px;
}

p{
    color:#9CA3AF;
    margin-bottom:20px;
    line-height:1.5;
}

input,
button{
    font-size:18px;
}

input[type="text"],
input[type="number"],
input[type="file"]{
    width:100%;
    max-width:450px;
    padding:14px;
    border-radius:12px;
    border:none;
    margin-bottom:15px;
}

button{
    background:#2563EB;
    color:white;
    border:none;
    border-radius:12px;
    padding:15px 35px;
    font-size:18px;
    cursor:pointer;
    transition:0.2s;
}

button:hover{
    background:#1D4ED8;
}

img{
    max-width:100%;
    border-radius:16px;
    margin-top:20px;
}

.download-button{
    display:inline-block;
    background:#16A34A;
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:12px;
    font-size:20px;
    margin-top:20px;
}

.download-button:hover{
    background:#15803D;
}

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

.card{
    width:250px;
    background:#18181B;
    padding:30px;
    border-radius:20px;
    text-decoration:none;
    color:white;
    transition:0.2s;
}

.card:hover{
    background:#27272A;
    transform:translateY(-3px);
}
