/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 1em;
}

.container {
    background: white;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 650px;
}

img {
    display: block;
    margin: 0 auto 1em;
    width: 120px;
    height: auto;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1.5em;
    line-height: 1.4;
}

button {
    background: #007BFF;
    color: white;
    border: none;
    padding: 0.75em 1.5em;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #0056b3;
}

.footer {
    margin-top: 2em;
    font-size: 0.8rem;
    color: #777;
}
