body.se-body {
    margin: 0;
    background: #252a2f !important;
    font-family: Arial, Helvetica, sans-serif;
}

.se-page-bg {
    min-height: 100vh;
    background: radial-gradient(circle at center, rgba(255,255,255,.12), rgba(0,0,0,.45));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.se-modal {
    width: min(750px, 100%);
    background: #fff;
    border-radius: 14px;
    padding: 20px 40px 20px;
    box-shadow: 0 18px 55px rgba(0,0,0,.28);
    color: #111827;
}

.se-logo-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.se-logo-img {
    max-width: 240px;
    width: 70%;
    height: auto;
    cursor: pointer;
}


.success-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /*background-color: #e8d27a;*/
    padding: 6px 16px;
    font-size: 14px;
    font-weight: bold;
    color: #2d3b1f;
    font-family: Arial, sans-serif;
}

.success-icon {
    width: 20px;
    height: 20px;
    border: 2px solid #2d5c3b;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2d5c3b;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

.success-text {
    letter-spacing: 1px;
    text-align: center;
}

.se-progress-meta {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    font-size: 15px;
    font-weight: 600;
    color: #005b20;
    margin-bottom: 0px;
}

    .se-progress-meta span:nth-child(2) {
        color: #111827;
        text-align: center;
    }

    .se-progress-meta span:last-child {
        text-align: right;
    }

.se-progress-track {
    height: 12px;
    background: #e6e8eb;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 7px;
}

.se-progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #004f1b, #007a2e);
    border-radius: 999px;
}

.se-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 20px;
}

    .se-message b {
        color: #005b20;
        font-weight: bolder;
    }

.se-icon {
    color: #005b20;
    font-size: 34px;
    transform: rotate(-20deg);
}

.se-divider {
    border: 0;
    border-top: 1px solid #e2e5e8;
    margin: 0 0 0;
}

.se-offer-panel {
    border: 0 !important;
}

.se-content {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 34px;
    align-items: center;
    margin-bottom: 20px;
}

.se-image-btn,
.se-image-btn input,
.se-offer-image {
    width: 100%;
    display: block;
}

.se-offer-image {
    border-radius: 8px;
    object-fit: fill;
    aspect-ratio: 16 / 9;
    max-height: 340px;
    padding: 0;
    height: 200px;
}

.se-headline {
    margin: 0 0 14px;
    display: none;
}

    .se-headline a {
        color: #111827 !important;
        text-decoration: none !important;
        font-size: 18px;
        line-height: 1.12;
        font-weight: 700;
        letter-spacing: -0.5px;
    }

.se-description {
    font-size: 20px;
    line-height: 1.25;
    color: #111827;
    font-weight: 400 !important;
}

    .se-description p,
    .se-description div {
        margin-bottom: 15px;
    }

.se-cta-wrap {
    text-align: center;
    margin-bottom: 18px;
}

.se-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-height: 58px;
    text-transform: uppercase;
    background: #005b20 !important;
    color: #fff !important;
    border-radius: 7px;
    font-size: 18px !important;
    font-weight: 700 !important;
    letter-spacing: .3px;
    text-align: center;
    padding: 8px 22px !important;
    text-decoration: none !important;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,.18);
    border: 0 !important;
    height: 58px !important;
}

    .se-cta:hover {
        background: #004818 !important;
        color: #fff !important;
    }

.se-disclaimer {
    font-size: 12px;
    line-height: 1.35;
    color: #777;
    margin-top: 16px;
    text-align: center;
}

.se-skip-wrap {
    text-align: center;
    font-size: 14px;
}

    .se-skip-wrap a {
        color: #005b20 !important;
        text-decoration: underline;
    }

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(255,255,255,.75);
}

.se-image-wrap2 {
    display: none;
    order: 2;
    width: 100%;
    margin-bottom: 20px;
}

#Description p {
    font-size: 15px !important;
    background-color: #fff !important;
    color: #000 !important;
    text-decoration: none !important;
}

.se-header {
    display: block;
    margin-bottom: 20px;
    text-align: center;
}

    .se-header a {
        color: #111827 !important;
        text-decoration: none !important;
        font-size: 28px;
        line-height: 1.12;
        font-weight: 700;
        position: relative;
        display: inline;
    }

@media (max-width: 700px) {
    .se-page-bg {
        align-items: flex-start;
        padding: 14px;
    }

    .se-modal {
        width: 100%;
        border-radius: 14px;
        padding: 28px 24px 24px;
        margin: 14px 0;
    }

    .se-logo-img {
        width: 82%;
        max-width: 270px;
    }

    .se-progress-meta {
        font-size: 14px;
        grid-template-columns: 0.7fr 2.5fr 0.7fr;
    }

    .se-progress-track {
        height: 11px;
        margin-bottom: 15px;
    }

    .se-message {
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .se-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 14px;
    }

    .se-copy {
        display: flex;
        flex-direction: column;
    }

    .se-header {
        display: none;
    }

    .se-headline {
        order: 1;
        text-align: center;
        margin-bottom: 20px;
        display: block
    }

    .se-image-wrap {
        display: none;
        order: 2;
        width: 100%;
    }

    .se-image-wrap2 {
        display: block;
    }

    .se-description {
        order: 3;
        font-size: 18px;
        line-height: 1.42;
    }

    .se-headline a {
        font-size: 31px;
    }

    .se-cta {
        width: 100% !important;
        min-height: 56px;
        font-size: 18px !important;
        height: auto !important;
    }
}
