/* General styles */

.logo {
    width: 256px;
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f5f7; /* Light grey background */
    color: #333333; /* Dark text */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container styling */
.container {
    text-align: center;
    padding: 20px;
    background-color: #ffffff; /* White box background */
    border: 1px solid #cccccc; /* Light border */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 600px;
    width: 90%;
}


/* Main content */
main h1 {
    font-size: 1.8rem;
    color: #003f87; /* Blue, inspired by ICS site */
    margin-bottom: 10px;
}

main p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Footer styling */
footer {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #666666;
}
