.thanks-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    height: 700px;
}

.thanks-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    object-fit: cover;
    z-index: 0;
}

.thanks-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.thanks-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 168px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.check-thanks {
    margin-bottom: 20px;
    background-color: var(--bs-main-500);
    border-radius: 64px;
    padding: 8px;
    width: 40px;
    height: 40px;
}

.thanks-title {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 48px;
}

.thanks-eyebrow {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 16px;
}

.thanks-message {
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 40px;
    width: 50%;
}


@media (max-width: 768px) {
    .thanks-hero {
        height: 448px;
    }
    .thanks-hero-bg {
        height: 448px;
    }

    .thanks-hero-content {
        padding: 40px 24px 0 24px;
    }

    .check-thanks {
        margin-bottom: 16px;
        padding: 6px;
        width: 32px;
        height: 32px;
    }

    .thanks-title {
        margin-top: 0;
        margin-bottom: 4px;
        font-size: 24px;
        line-height: 28px;
        text-align: left;
    }

    .thanks-eyebrow {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 8px;
        text-align: left;
    }

    .thanks-message {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 24px;
        width: 100%;
    }

    .thanks-hero {
        .btn-404 {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }
    }
}