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

body{
    font-family:"Inter",sans-serif;
    background:linear-gradient(135deg,#eef2ff,#f8fafc);
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.container{
    width:100%;
    max-width:900px;
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

h1{
    text-align:center;
    margin-bottom:30px;
    font-size:38px;
}

textarea{
    width:100%;
    min-height:220px;
    padding:18px;
    border:2px solid #ddd;
    border-radius:16px;
    resize:vertical;
    font-size:16px;
    font-family:inherit;
    margin-bottom:30px;
}

textarea:focus{
    outline:none;
    border-color:#4f46e5;
}

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:18px;
    margin-bottom:30px;
}

.card{
    background:#f8fafc;
    border-radius:16px;
    padding:22px;
    text-align:center;
}

.card h2{
    font-size:34px;
    color:#4f46e5;
    margin-bottom:8px;
}

.card p{
    color:#555;
    font-weight:600;
}

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

.buttons button{
    flex:1;
}

button{
    border:none;
    border-radius:14px;
    background:#4f46e5;
    color:white;
    padding:16px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
}

button:hover{
    transform:translateY(-2px);
}

@media(max-width:700px){

    .buttons{
        flex-direction:column;
    }

}
.backButton{
    display:inline-block;
    margin-bottom:25px;
    color:#4f46e5;
    text-decoration:none;
    font-weight:700;
    transition:.25s;
}

.backButton:hover{
    opacity:.7;
}

.description{
    color:#666;
    font-size:18px;
    margin:20px 0 35px;
    line-height:1.7;
}

.info{
    margin-top:60px;
    padding-top:40px;
    border-top:2px solid #eee;
}

.info h2{
    margin:35px 0 15px;
    color:#4f46e5;
    font-size:28px;
}

.info p{
    color:#555;
    line-height:1.8;
    font-size:17px;
}