* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    background: linear-gradient(180deg, #FFFFFF 0%, #EEF4FF 100%);
}

.main-container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 60px 0;
}

.phone-area {
    flex-shrink: 0;
    margin-left: 253px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.phone-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
}


.right-wrapper {
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 330px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 560px;
    width: 100%;
}

.content-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.logo-img {
    width: 74px;
    height: 74px;
    margin-top: 170px;
    object-fit: contain;
    display: block;
    margin-bottom: 0;
}

.title-img {
    max-width: 560px;
    width: 100%;
    height: auto;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
}

.description {
    font-family: 'Lato', Lato;
    font-weight: 400;
    font-size: 30px;
    color: #061220;
    line-height: 36px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 560px;
    width: 100%;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

.app-btn {
    background: #305EE3;
    border-radius: 218px;
    font-family: 'Lato', Lato;
    font-weight: 400;
    font-size: 30px;
    color: #FFFFFF;
    line-height: 36px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    padding: 19px 48px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s, background 0.2s;
    margin-top: 56px;
    display: inline-block;
    width: auto;
}

.app-btn:hover {
    opacity: 0.9;
    transform: scale(0.98);
    background: #1a4bc9;
}


.footer {
    margin-top: 200px;
    font-family: 'Lato', Lato;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
    line-height: 19px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    width: 100%;
}

.footer a {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    transition: opacity 0.2s;
}

.footer a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer span {
    margin: 0 8px;
    color: #000000;
}


@media (max-width: 999px) {
    .main-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 60px 30px 80px 30px;
        gap: 48px;
    }

    .phone-area {
        order: 2;
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }

    .phone-img {
        max-width: 70%;
        margin: 0 auto;
    }

    .right-wrapper {
        order: 1;
        margin-left: 0;
        margin-right: 0;
        align-items: center;
        max-width: 90%;
    }

    .content-area {
        align-items: center;
        text-align: center;
    }

    .title-img {
        max-width: 90%;
    }

    .description {
        text-align: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .app-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .footer {
        margin-top: 200px;
        text-align: center;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .footer span {
        margin: 0;
    }
}


@media (max-width: 700px) {
    .description {
        font-size: 22px;
        line-height: 30px;
    }

    .logo-img {
        width: 60px;
        height: 60px;
    }

    .app-btn {
        font-size: 24px;
        padding: 12px 36px;
        margin-top: 40px;
    }

    .title-img {
        max-width: 85%;
    }

    .footer {
        margin-top: 40px;
    }
}


@media (min-width: 1400px) {
    .right-wrapper {
        max-width: 600px;
    }

    .description {
        max-width: 560px;
    }
}


.phone-img {
    max-width: 600px;
    width: 100%;
    height: auto;
}