body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EFF5FB;
    padding-top: 80px;
    padding-bottom: 80px;
    margin: 0px;
}

.logo {
    width: 428px;
    height: 280px;
}

.container {
    display: flex;
    margin: 0px 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
    width: 584px;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    font-family: Anton, sans-serif;
}

.text-container-h1 {
    color: #272724;
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: 0.46px;
    text-transform: uppercase;
}

.text-container-body {
    color: #5A5A5A;
    font-family: "Roboto Flex", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.text-container-body-p {
    margin: 0px;
    margin-bottom: 12px;
    overflow-wrap: break-word;
}

.text-container-body-link {
    color: #EF7D00;
    line-height: 20px;
    white-space: nowrap;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

/* Tablet Styles */
@media (min-width: 744px) and (max-width: 1439px) {
    .text-container-h1 {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: 0.96px;
    }
}

/* Mobile Styles */
@media (max-width: 743px) {
    .logo {
        width: 336px;
        height: 220px;
    }

    .container {
        width: 396px;
        margin: 0px 16px;
    }

    .text-container-h1 {
        font-size: 32px;
        line-height: 40px;
    }
}