/* Base Stylesheet - Dull */

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

/* Body */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    padding: 48px 24px;
}

/* Layout */
.container {
    max-width: 680px;
    margin: 0 auto;
}

/* Typography */
h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 20px;
    color: #000000;
    margin-bottom: 28px;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 3px solid #000000;
}

h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

p {
    font-size: 17px;
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

/* Links */
a {
    color: #000000;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* Sections */
.section {
    margin-bottom: 32px;
}

/* Footer */
.footer {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 3px solid #000000;
    font-size: 13px;
    color: #666666;
}

.footer p {
    font-size: 13px;
    margin-bottom: 8px;
}

.footer a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid #000000;
}

.footer a:hover {
    border-bottom-color: transparent;
}

.footer .disclaimer {
    max-width: 600px;
    margin: 24px 0 0;
    font-size: 13px;
    line-height: 1.8;
}

/* Mobile */
@media (max-width: 600px) {
    body {
        padding: 32px 20px;
    }

    h1 {
        font-size: 36px;
    }

    .tagline {
        font-size: 18px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }
}
