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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.logo {
    margin-bottom: 40px;
}

.logo img {
    max-width: 200px;
    height: auto;
}

.message {
    text-align: center;
}

.message p {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.message a {
    color: #0066cc;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.message a:hover {
    color: #004499;
}

footer {
    padding: 24px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

footer p {
    color: #666;
    font-size: 14px;
}