* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f4f7f5;
    color: #333;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 20px 48px;
    text-align: center;
}

.logo {
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
}

.logo.small {
    width: 90px;
    height: 90px;
}

h1 {
    margin: 8px 0;
    font-size: 2.2rem;
}

.subtitle {
    color: #666;
    margin-bottom: 24px;
}

.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    text-align: left;
}

.card h2 {
    margin-top: 0;
}

ul {
    padding-left: 20px;
}

.link {
    display: inline-block;
    margin-top: 8px;
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
}

.link:hover {
    text-decoration: underline;
}

footer {
    margin-top: 32px;
    font-size: 0.9rem;
    color: #777;
}

footer a {
    color: #2e7d32;
    text-decoration: none;
}
