.thank-you-container {
    max-width: 1200px;
    padding: 20px 40px;
    margin: 50px auto 50px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-side {
    max-width: 50%;
}

.left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-side {
    max-width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.red-button {
    background-color: #D25A4C;
    border: none;
    padding: 10px 30px;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.red-button a {
    color: white;
    text-decoration: none;
}

.edit-btn {
    background-color: #F2F2F2;
    color: black;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.resend {
    color: #D25A4C;
    cursor: pointer;
    text-decoration: underline;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.logo {
    margin-top: 50px;
    font-weight: bold;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 1000px) {
    .thank-you-container {
        flex-direction: column;
        padding: 20px;
    }

    .right-side {
        max-width: 100%;
        padding: 0;
    }

    .left-side {
        display: flex;
        justify-content: center;
        max-width: 100%;
    }

    .left-side img {
        max-width: 50%;
        height: auto;
    }

    .right-side {
        padding: 20px;
    }

    .logo {
        display: none;
    }
}