body {
    margin: 0;
    padding: 0;
    background: url('../img/pt/bg.webp') no-repeat left center/cover;
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 200px;
    padding: 72px 120px;

}

.left {
    max-width: 90%;
}

.bonus-title {
    font-weight: 800;
    font-size: 100px;
    color: #fff;
    margin-top: -24px;
    text-transform: uppercase;
}

.sub-title {
    font-weight: 700;
    font-size: 68px;
    margin-top: -85px;
    color: #DE2111;
    text-transform: uppercase;
    text-decoration: underline;
    font-style: italic; /* Добавлено свойство для курсива */
}


.right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 90px;
    height: auto;
}

.bottom-container {
    height: 20vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 50px 120px;
}

@media (max-width: 1680px) and (max-height: 1050px) {
    .bottom-container {
        height: 20vh;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 190px 50px;
    }
}

@media (max-width: 1620px) {
    body {
        background: url('../img/pt/bg2.webp') no-repeat left center/cover;
    }
    .container {
        padding: 48px 48px;
    }
    .bottom-container {
        padding: 50px 48px;
    }
}

@media (max-width: 1280px) {
    body {
        background: url('../img/pt/bg3.webp') no-repeat left center/cover;
    }
    .bonus-title {
        font-size: 75px;
    }
    .sub-title {
        font-size: 52px;
        margin-top: -68px;
    }
    .container {
        padding: 36px 24px;
    }
    .bottom-container {
        padding: 50px 24px;
    }
}

@media (max-width: 1024px) {
    body {
        background: url('../img/pt/bg4.webp');
        background-repeat: no-repeat;
        background-size: auto; /* Оригинальный размер */
        background-position: center top; /* Размещаем в левом верхнем углу */
       
    }
    .bottom-container {
        height: auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .bottom-container {
        padding: 50px 24px;
        padding-top: 450px;
    }
    .bonus-title {
        font-size: 70px;
    }
}


@media (max-width: 768px) {
    body {
        background: url('../img/pt/bg5.webp');
        background-size: 768px; /* Оригинальный размер */
        background-position: center top; /* Размещаем в левом верхнем углу */
    }
    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: auto;
        flex-direction: column-reverse;
    }
    .bonus-title {
        font-size: 40px;
        margin-top: 0px;
        text-align: center;
    }
    .left {
        max-width: 100%;
        margin-top: 8px;
    }
    .container {
        padding: 24px 16px;
    }
    .logo {
        width: 70px;
        height: auto;
    }
    .sub-title {
        font-size: 32px;
        margin-top: -40px;
        text-align: center;
    }
    .bottom-container {
        padding-top: 440px;
    }
    .right {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        flex-direction: row-reverse;
    }
}