section.offer-style-banner {
    background: #F3F5F8;
    padding: 26px 30px 26px 37px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
}

.offer-style-banner .offer__content {
    display: flex;
}

.offer__content-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.offer__content-icon img {
    width: 74px;
    height: auto;
}

.offer__content-container {
    margin-left: 37px;
    margin-right: 75px;
    color: #000;
}

.offer__button {
    display: flex;
    align-items: center;
}

.offer__button a {
    padding: 16px 40px;
    background: #4BB933;
    color: #FFF;
    font-size: 18px;
    line-height: 30px;
    text-decoration: none;
}

.offer__button a:hover {
    background: #4fda2f;
}

.offer__content-title {
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 4px;
}

.offer__content-text p {
    font-size: 18px;
    line-height: 30px;
    color: #000;
    margin: 0 0 10px;
}

.offer__content-text .license-info {
    font-size: 14px;
    line-height: 18px;
    color: #6E7C87;
}

@media (max-width: 1024px) {
    .offer__content-container {
        margin-right: 35px;
    }

    .offer__content-text p {
        font-size: 14px;
        line-height: 16px;
    }

    .offer__content-title {
        font-size: 20px;
        line-height: 23px;
        margin-bottom: 9px;
    }

    .offer__button a {
        padding: 8px 20px;
    }
}

@media (max-width: 900px) {
    .offer-style-banner {
        flex-direction: column;
        padding: 21px 14px 25px;
    }

    .offer__content-container {
        margin-left: 18px;
        margin-right: 0;
    }

    .offer__content-icon {
        align-items: flex-start;
    }

    .offer__content-icon img {
        width: 68px;
    }

    .offer__button {
        display: block;
        margin-top: 25px;
    }

    .offer__button a {
        display: block;
        text-align: center;
        padding-top: 16px;
        padding-bottom: 16px;
        padding-left: unset;
        padding-right: unset;
    }
}

@media (max-width: 600px) {
    .offer-style-banner {
        margin: 0 15px;
    }
}