.content{

    background:var(--bg-light);

    border-radius:var(--radius);

    padding:45px;

    box-shadow:var(--shadow);
}

.content h1{

    font-size:44px;

    margin-bottom:22px;

    line-height:1.3;
}

.content h2{

    font-size:32px;

    margin-top:42px;

    margin-bottom:18px;
}

.content h3{

    font-size:24px;

    margin-top:30px;

    margin-bottom:14px;

    color:var(--primary);
}

.content p{

    font-size:17px;

    color:var(--text-light);

    margin-bottom:20px;

    line-height:1.9;
}

.content ul{

    margin-left:24px;

    margin-bottom:24px;
}

.content li{

    margin-bottom:12px;

    line-height:1.8;

    color:var(--text-light);
}

@media(max-width:900px){

    .content{

        padding:30px;
    }

    .content h1{
        font-size:34px;
    }

    .content h2{
        font-size:28px;
    }

    .content h3{
        font-size:22px;
    }
}