body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #ece9e6 0%, #ffffff 100%); /* Subtle gradient */
    color: #444; /* Slightly softer text color */
    text-align: center;
    margin: 0;
    padding: 1em; /* Add padding for smaller screens */
}

.container {
    padding: 3em 4em; /* Increased padding */
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    border-radius: 12px; /* More rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Softer shadow */
    max-width: 600px; /* Limit width for better readability */
    width: 100%;
}

h1 {
    color: #2c3e50; /* Darker, sophisticated blue/grey */
    margin-bottom: 0.75em;
    font-size: 2.5em; /* Larger heading */
}

p {
    line-height: 1.7;
    margin-bottom: 1.2em;
    font-size: 1.1em; /* Slightly larger paragraph text */
}

p strong {
    color: #34495e; /* Slightly darker for emphasis */
    font-weight: 600;
}

a {
    color: #3498db; /* Clear link color */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #2980b9; /* Darker blue on hover */
    text-decoration: underline;
}