/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f4f4;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.logo {
    max-width: 450px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #222;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Responsive */
@media (max-width: 800px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.95rem;
    }
}
