/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f4f4;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.content {
    background: #fff;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #222;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Footer */
footer {
    background: #222;
    color: #eee;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
}
