body {
    font-family: Arial, sans-serif;
    background-color: #d6ddec; /* Lighter background color */
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.btn-container {
    display: flex;
    justify-content: right;
    align-items: center;
    height: 100%;
    text-align: center;
}




.container {
    width: 80%;
    max-width: 1000px;
    background-color: #ffffff; /* White background for better contrast */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, rgba(106, 17, 203, 0.2), rgba(37, 117, 252, 0.2)); /* Faint gradient */
    margin: auto;
}

h1, h2, p {
    text-align: center;
    color: #444444; /* Darker color for text contrast */
}

.section {
    margin: 20px 0;
    color: #444444; /* Darker color for text contrast */
}

label {
    font-weight: bold;
    color: #444444; /* Darker color for labels */
}

input[type="radio"],
input[type="checkbox"] {
    margin-right: 10px;
}

textarea {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.btn-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a6268;
}


.thank-you-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f4fc; /* Same background color as the rest of the survey */
}

.thank-you-content {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.thank-you-content img {
    width: 100px;
    margin-bottom: 20px;
}

.thank-you-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.thank-you-content .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
}

.thank-you-content .btn:hover {
    background-color: #0056b3;
}
