header{
    background: #000 !important;
}

.advice-container{
    display: flex;
    justify-content: center;
    width: 100%;
}

.advice-container form{
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #E0E0E0;
    background: #F6F6F6;
    width: 980px;
    text-align: center;
}

.advice-form p{
    font-size: 18px;
}

.advice-form h2{
    margin-bottom: 16px;
}

.advice-form ol {
    text-align: left;
    font-size: 20px;
    margin-top: 40px;
}

.advice-container{
    margin: 64px 0 140px 0;
}

.advice-form ol li{
    margin-bottom: 16px;
}

.advice-form .field-title{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.advice-form input[name='email']{
    width: 100%;
}

.advice-form .submit-btn{
    height: 56px;
    width: 100%;
}

.advice-form{
    position: relative;
}

.advice-form img{
    position: absolute;
    left: 4px;
    transform: translateX(-100%);
}

.checkbox-group{
    display: flex;
    flex-direction: column;
    color: rgba(26, 26, 26, 0.70);
    font-size: 18px;
    font-weight: 400;
}

.checkbox-group > * + * {
    margin-top: 16px;
}

@media (max-width: 1500px) {
    .advice-container form{
        width: 875px;
    }
    
}

@media (max-width: 500px) {
    .advice-container form{
        padding: 27px;
    }
    .advice-container{
        margin: 0;
        padding: 40px 20px;
    }
    .advice-form img {
        display: none;
    }
}