body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

.container {
    background-color: #fff;
    max-width: 800px;
    width: 100%;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 2rem;
    text-align: left;
}

h1 {
    font-size: 2rem;
    color: #1976d2;
    margin-bottom: 1rem;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    color: #1976d2;
    margin-top: 1.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Remove footer if any */
footer {
    display: none; /* Hide the footer completely */
}

/* Button Styles */
.return-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #1976d2;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 2rem;
}

.return-btn:hover {
    background-color: #0d47a1;
}