body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1C2833; /* Dark blue background for consistency */
}

.thank-you-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #CFE4E7; /* Light blue background */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.header {
    margin-bottom: 20px;
}

.logo {
    width: 80px;
    margin-bottom: 10px;
}

h1 {
    color: #1C8EF9; /* Primary blue color for the title */
    font-size: 24px;
    margin: 0;
}

.message {
    margin-bottom: 20px;
}

.message p {
    font-size: 16px;
    color: #333;
}

.next-steps {
    text-align: left;
    margin-bottom: 20px;
}

.next-steps h3 {
    font-size: 18px;
    color: #0056b3; /* Darker blue for section titles */
    margin: 10px 0;
}

.next-steps ul {
    padding-left: 20px;
}

.next-steps li {
    font-size: 16px;
    color: #333;
}

.back-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 18px;
    color: #ffffff;
    background-color: #1C8EF9; /* Match theme's blue */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.back-btn:hover {
    background-color: #1668C1; /* Darker blue on hover */
}
