/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f9fafb;
    color: #1f2937;
    line-height: 1.6;
    padding: 20px;
}

/* Container */
.container {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

h1, h2, h3 {
    color: #111827;
    margin-bottom: 15px;
}

h1 {
    font-size: 32px;
    font-weight: 700;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
}

p {
    margin-bottom: 15px;
    font-size: 15px;
    color: #374151;
}

ul, ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Section spacing */
.section {
    margin-bottom: 30px;
}

/* Footer note */
.footer-note {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    margin-top: 40px;
}
