body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f7fa;
    color:#222;
}

.container{
    max-width:1100px;
    margin:50px auto;
    padding:0 20px;
}

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

.subtitle{
    color:#666;
    margin-bottom:30px;
    font-size:18px;
}

textarea{
    width:100%;
    height:320px;
    padding:18px;
    font-size:18px;
    line-height:1.6;
    border:1px solid #ddd;
    border-radius:12px;
    resize:vertical;
    box-sizing:border-box;
    background:white;
}

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

.stat{
    background:white;
    border:1px solid #ddd;
    border-radius:12px;
    padding:20px;
    text-align:center;
    box-shadow:0 4px 10px rgba(0,0,0,.05);
}

.stat h2{
    margin:0;
    font-size:34px;
    color:#1565c0;
}

.stat p{
    margin:8px 0 0;
    color:#666;
}

.related{
    margin-top:50px;
}

.related h3{
    margin-bottom:20px;
}

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

.related-grid a{
    display:block;
    padding:16px;
    background:white;
    border:1px solid #ddd;
    border-radius:10px;
    text-decoration:none;
    color:#222;
    font-weight:bold;
    transition:.2s;
}

.related-grid a:hover{
    background:#1565c0;
    color:white;
}

.back-home{
    display:inline-block;
    margin-top:40px;
    text-decoration:none;
    font-weight:bold;
    color:#1565c0;
}

.back-home:hover{
    text-decoration:underline;
}

.info{
    margin-top:50px;
    padding:30px;
    background:white;
    border:1px solid #ddd;
    border-radius:12px;
    line-height:1.7;
}

.info h2{
    margin-top:0;
}

.info h3{
    margin-top:30px;
}

.info p{
    color:#666;
}