html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background: #f6f7f8;
    color: #232323;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.full-bg {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

main {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 48px 24px 24px 24px;
    background: none;
    border-radius: 0;
    box-shadow: none;
    border-top: none;
    display: block;
}

header h1 {
    margin: 0 0 8px 0;
    font-size: 2.3rem;
    color: #1e8c5a;
    letter-spacing: 1px;
    font-weight: 800;
}

.subtitle {
    color: #3a3a3a;
    font-size: 1.08rem;
    margin-bottom: 18px;
    font-weight: 500;
}

section {
    margin: 28px 0 18px 0;
}

section p {
    margin: 0 0 12px 0;
    font-size: 1.08rem;
    color: #232323;
}

a {
    color: #1e8c5a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

a:hover {
    color: #f9a825;
    text-decoration: underline;
}

footer {
    margin-top: 32px;
    text-align: center;
    color: #888;
    font-size: 0.97rem;
}

hr {
    border: none;
    border-top: 1.5px solid #e0e0e0;
    margin: 24px 0 12px 0;
}

/* Zig logo bar style */
.zig-bar {
    width: 100vw;
    background: #fff;
    border-bottom: 3px solid #f9a825;
    padding: 0.7rem 0 0.7rem 2.2rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: #232323;
    letter-spacing: 2px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.03);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

@media (max-width: 600px) {
    main {
        padding: 18px 4vw 16px 4vw;
    }

    .zig-bar {
        font-size: 1.1rem;
        padding-left: 1rem;
    }
}