html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    background: #f8f8f8;
    color: #222;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    text-align: center;
    padding: 16px;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.content {
    flex: 1;
    max-width: min(80vmin, 480px);
    margin: 24px auto;
    padding: 0 16px;
}

.lead {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.contact-form p {
    margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px;
    font-size: 0.9rem;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

.site-footer {
    position: static;
    text-align: center;
    padding: 16px;
    border-top: 1px solid #ddd;
    background: #fff;
    font-size: 0.85rem;
}
