/* styles.css */
:root {
    --bg: #eef4fb;
    --card-bg: #ffffff;
    --primary: #3366cc;
    --text-main: #333333;
    --text-light: #555555;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    background: var(--card-bg);
    max-width: 640px;
    margin: 4rem auto;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 16px var(--shadow);
    text-align: center;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

footer {
    margin-top: auto;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
}