body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f4;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 3rem;
    border-radius: 16px;
    max-width: 90vw;
    box-sizing: border-box;
}

.logo {
    width: 480px;
    max-width: 70vw;
    height: auto;
    margin-bottom: 1.5rem;
}

.title {
    font-family: 'Rubik', 'Segoe UI', Arial, sans-serif;
    font-size: 2.0rem;
    color: #222;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 400;
    text-align: center;
}

.description, .subtitle, .footer {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
}

.description {
    font-size: 1.25rem;
    color: #555;
    margin-top: 1rem;
    text-align: center;
}

.subtitle {
    font-size: 1.1rem;
    color: #888;
    margin-top: 0.5rem;
    text-align: center;
}

.footer {
    font-size: 1rem;
    color: #888;
    margin-top: 2rem;
    text-align: center;
}

@media (max-width: 600px) {
    .container {
        padding: 1.2rem 0.5rem;
        border-radius: 10px;
    }
    .logo {
        width: 120px;
        max-width: 90vw;
    }
    .title {
        font-size: 1.6rem;
    }
    .description {
        font-size: 1rem;
    }
    .subtitle {
        font-size: 0.95rem;
    }
    .footer {
        font-size: 0.9rem;
    }
}
