body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

h1 {
    color: #0076C0; /* Using blue from logo */
}

p {
    font-size: 16px;
}

a {
    color: #0076C0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
