.t182__buttons{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

.t182__buttons>a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    height:56px;
    position:relative;
    z-index:2;
}


#main-text{
    max-width:1100px;
    margin:60px auto;
    padding:0 28px;
    font-family:Inter,Arial,sans-serif;
    color:#232323;
    line-height:1.9;
    font-size:18px;
}

#main-text>*:first-child{
    margin-top:0;
}

#main-text h1{
    font-size:clamp(38px,5vw,62px);
    line-height:1.05;
    font-weight:800;
    letter-spacing:-0.04em;
    max-width:900px;
    margin:0 0 34px;
    position:relative;
    padding-bottom:24px;
}

#main-text h1::after{
    content:"";
    width:90px;
    height:4px;
    background:#ff6600;
    border-radius:20px;
    display:block;
    margin-top:20px;
}

#main-text h2{
    margin:70px 0 22px;
    font-size:32px;
    font-weight:750;
    line-height:1.2;
    letter-spacing:-0.02em;
    color:#111;
}

#main-text h3{
    margin:55px 0 18px;
    font-size:24px;
    font-weight:700;
    color:#1f1f1f;
    padding-left:22px;
    border-left:4px solid #ff6600;
}

#main-text p{
    margin:0 0 22px;
    color:#4b4b4b;
    text-align:justify;
    text-wrap:pretty;
}

#main-text p:first-of-type{
    font-size:20px;
    line-height:1.8;
    color:#2d2d2d;
}

#main-text h2+p,
#main-text h3+p{
    font-size:19px;
    color:#2c2c2c;
}

#main-text ol{
    margin:36px 0;
    padding:0;
    list-style:none;
    counter-reset:item;
    display:grid;
    gap:14px;
}

#main-text ol li{
    counter-increment:item;
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:18px 22px;
    background:#fafafa;
    border:1px solid #ececec;
    border-radius:18px;
    transition:.3s;
}

#main-text ol li::before{
    content:counter(item);
    width:38px;
    min-width:38px;
    height:38px;
    border-radius:50%;
    background:#ff6600;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:15px;
}

#main-text ol li:hover{
    transform:translateX(8px);
    border-color:#ff6600;
    background:#fff;
}

#main-text strong{
    color:#111;
}

#main-text a{
    color:#ff6600;
    text-decoration:none;
    border-bottom:1px solid transparent;
    transition:.25s;
}

#main-text a:hover{
    border-color:#ff6600;
}

@media (max-width:768px){

    #main-text{
        margin:40px auto;
        padding:0 20px;
        font-size:17px;
    }

    #main-text h1{
        margin-bottom:28px;
    }

    #main-text h2{
        margin-top:50px;
        font-size:28px;
    }

    #main-text h3{
        font-size:22px;
    }

    #main-text p:first-of-type{
        font-size:18px;
    }

    #main-text ol li{
        padding:16px 18px;
    }
}
