/* Minimal, clean single-page design */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.7;
    color: #000;
    background-color: #fff;
    padding: 40px 20px;
}

.container {
    max-width: 650px;
    margin: 0 auto;
}

h1 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 50px;
    color: #000;
}

h2 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 40px;
    color: #000;
}

section {
    margin-bottom: 20px;
}

p {
    margin-bottom: 8px;
    line-height: 1.7;
    color: #000;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 600px) {
    body {
        padding: 30px 15px;
    }

    h1 {
        font-size: 1.6em;
        margin-bottom: 40px;
    }

    h2 {
        font-size: 1.1em;
    }
}
