
    .thank-you-banner {
        border-radius: 4px;
        background-color: #E1F4E9;
        padding: 0 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
    }

    .banner-emoji {
            width: 34px;
            object-fit: contain;
            margin-right: 5px;
            margin-top: -5px;
    }

    .banner-title {
        font-family: Archivo;
        font-weight: 500;
        font-size: 24px;
        line-height: 60px;
        letter-spacing: 0%;
        color: #2BA45B;
    }

    .banner-message {
        font-family: Archivo;
        font-weight: 500;
        font-size: 18px;
        line-height: 17px;
        letter-spacing: 0%;
        text-align: center;
        color: #043216;
    }

    @media (max-width: 767px) {
        .thank-you-banner {
            padding: 10px;
        }

        .banner-title {
            line-height: 130%;
            font-size: 20px;
        }

        .banner-message {
            line-height: 120%;
            font-size: 16px;
        }
    }