* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F5F5F5;
    color: #303841;
    min-height: 100vh;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    padding: 0;

    overflow: hidden;
}

.main-container {
    width: 88.88vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5.55vw;
    flex-shrink: 0;
}

.text-block {
    width: 38.88vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.66vw;
    flex-shrink: 0;
}

.text-block h1 {
    font-size: 3.88vw;
    font-weight: 700;
    line-height: 1.15;
    color: #303841;
    letter-spacing: -1.5px;
}

.text-block p {
    font-size: 1.38vw;
    font-weight: 400;
    line-height: 1.5;
    color: #303841;
}

.image-block {
    width: 44.44vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.image-block img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 992px) {
    body {
        overflow-y: auto;
    }

    .main-container {
        flex-direction: column;
        width: 100%;
        padding: 40px 24px;
        gap: 40px;
    }

    .text-block {
        width: 100%;
        text-align: center;
        align-items: center;
        gap: 16px;
    }

    .text-block h1 {
        font-size: 8vw;
        letter-spacing: -0.5px;
    }

    .text-block p {
        font-size: 4.5vw;
    }

    .image-block {
        width: 100%;
        order: -1;
    }

    .image-block img {
        max-height: 45vh;
    }
}
