.thank-you-body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.thank-you-body .thank-you-container {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.thank-you-body h1 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.thank-you-body p {
    color: #555;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.thank-you-body .return-home-button {
    background-color: #007BFF;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    text-decoration: none;
}

.thank-you-body .return-home-button:hover {
    background-color: #0056b3;
}

.thank-you-body .return-home-button:focus {
    outline: none;
}


