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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #ffffff;
    color: #1c1917;
    margin: 0;
}

.page {
    width: 100%;
    max-width: 1440px;
    min-height: 100vh;
    margin: 0 auto;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 96px;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
    flex: 1;
}

/* Title block with underline bar */

.title-block {
    display: inline-grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    place-items: start;
    position: relative;
}

h1 {
    grid-column: 1;
    grid-row: 1;
    font-family: "American Typewriter", serif;
    font-size: 48px;
    font-weight: normal;
    font-style: normal;
    line-height: 60px;
    color: #ff4200;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #ff4200;
    text-underline-offset: 2px;
    width: 645px;
    white-space: pre-wrap;
}

.title-bar {
    grid-column: 1;
    grid-row: 1;
    width: 276px;
    height: 11px;
    margin-left: 25px;
    margin-top: 54px;
    background: #ff4200;
}

/* Body text */

.body-text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #707070;
    text-align: center;
    width: 766px;
    white-space: pre-wrap;
    line-height: 28px;
}

.body-text strong {
    font-weight: 700;
}

/* Button */

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 210px;
    height: 44px;
    background: #ff4200;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.15px;
    transition: background 0.2s;
    cursor: pointer;
}

.cta-btn:hover {
    background: #e03a00;
}

.cta-btn svg {
    flex-shrink: 0;
}

/* Footer */

footer {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

footer p {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #707070;
    text-align: center;
    line-height: 28px;
    letter-spacing: -0.88px;
}

/* Responsive */

@media (max-width: 860px) {
    .page {
        padding: 48px 24px;
    }

    .title-block {
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 32px;
        line-height: 42px;
        width: 100%;
        max-width: 480px;
    }

    .title-bar {
        margin-top: 36px;
        width: 200px;
        height: 8px;
        margin-left: 16px;
    }

    .body-text {
        font-size: 16px;
        line-height: 24px;
        width: 100%;
        max-width: 560px;
    }
}

@media (max-width: 480px) {
    .page {
        padding: 32px 16px;
        justify-content: flex-start;
    }

    .content {
        gap: 32px;
        flex: initial;
    }

    h1 {
        font-size: 26px;
        line-height: 34px;
    }

    .title-bar {
        display: none;
    }

    .body-text {
        font-size: 15px;
    }

    .cta-btn {
        width: 100%;
    }

    footer {
        margin-top: 32px;
    }
}
