
.header__content-container {
    margin-top: 128px;
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.header__page-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    background: linear-gradient(90deg, #32A3FF 0%, #FC003F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    width: fit-content;
}

.header__info-container {
    display: flex;
    gap: 60px;
}

.header__info {
    max-width: 524px;
}

.header__tips {
    width: 553px;
    background: #FFFFFF80;
    border-radius: 24px;
    padding: 30px;
    height: fit-content;
}

.header__page-description {
    margin-top: 30px;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    height: 153px;
    padding-right: 51px;
}

.tips__title {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    font-size: 30px;
}

.tips__list {
    margin-top: 19px;
    counter-reset: tips 0;
}

.tip {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    counter-increment: tips 1;
    display: flex;
}

.tip::before {
    content: counter(tips) ". ";
    width: 20px;
}

.header__button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-bottom: 33px;
}

.button_header-consultation {
    padding: 21px 43px;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    color: #fff;
}

.footer {
    margin-top: 93px;
}

@media (max-width: 1024px) {
    .header__content-container {
        margin-top: 46px;
    }

    .header__info-container {
        flex-direction: column;
        gap: 38px;
    }

    .header__info {
        max-width: 100%;
        gap: 10px;
        display: flex;
        flex-direction: column;
    }

    .header__page-title {
        font-weight: 600;
        font-size: 24px;
    }

    .header__page-description {
        padding: 0;
        margin: 0;
        font-size: 16px;
        height: auto;
    }

    .header__tips {
        width: 100%;
        padding: 20px 10px;
    }

    .tips__title {
        font-size: 22px;
        gap: 10px;
    }

    .header__tips-icon {
        width: 26px;
    }

    .tip {
        font-size: 16px;
    }

    .button_header-consultation {
        padding: 20px 29px;
    }

    .header__button-container {
        gap: 25px;
        padding-bottom: 25px;
    }
}
