:root {
    --page-max-width: 1440px;
    --page-margin: 20px;
}

* {
    font-family: "Fira Sans";
}

.content-wrap {
    width: 100%;
}

.register-button,
.register-btn {
    background-color: #258BFF;
    padding: 16px 32px;
    display: flex;
    gap: 16px;
    align-items: center;
    width: fit-content;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;

    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
    border: none;
    border-radius: 12px;
}

.register-btn.white {
    background-color: #fff;
    color: #2787F5;
}

@media screen and (hover:hover) {
    .register-btn:hover {
        background-color: #4D98EE;
    }

    .register-btn.white:hover {
        background-color: #fff;
        color: #4D98EE
    }
}

.register-btn::after {
    content: "";
    --arrow-size: 24px;
    width: var(--arrow-size);
    height: var(--arrow-size);
    display: block;
    background-image: url('../img/register-arrow.svg');
    background-size: 100% 100%;
}

.register-btn.white::after {
    background-image: url('../img/register-arrow-blue.svg');
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
}

.economy-wrapper .economy {
    padding: 100px 80px;
    border-radius: 32px;
}

.economy-wrapper .economy .register-button {
    margin-left: auto;
}

.faq-block {
    margin: 0;
}

@media screen and (max-width: 1100px) {
    .economy-wrapper .economy {
        padding: 60px 40px;
        border-radius: 32px;
    }

    .content-block-integrations .content-block-integrations-title {
        font-size: 38px;
    }

    .page-wrapper {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .economy-wrapper .economy .register-button {
        margin: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

@media screen and (max-width: 980px) {
    .content-block-integrations .content-block-integrations-title {
        font-size: 32px;
    }

    .page-wrapper {
        gap: 40px;
    }
}

@media screen and (max-width: 600px) {
    .register-btn {
        padding: 16px;
        width: 100%;
        justify-content: center;
    }

    .economy-wrapper .economy {
        padding: 20px 30px;
        border-radius: 20px;
    }

    .content-block-integrations .content-block-integrations-title {
        font-size: 28px;
    }

    .page-wrapper {
        gap: 30px;
    }
}
