/* Base styles */
:root {
    --primary-color: #6200ee;    /* Main purple */
    --text-color: #37352f;       /* Main text color */
    --light-text: #6b7280;       /* Secondary text */
    --bg-color: #ffffff;
    --border-color: #e5e5e5;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--bg-color);
    padding: 0;
    margin: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--bg-color);
}

/* Typography */
h1, h2, h3 {
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.2rem;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

p, ul, ol {
    margin-bottom: 1rem;
    color: var(--text-color);
}

ul, ol {
    padding-left: 1.2rem;
}

li {
    margin-bottom: 0.3rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header and Footer */
header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.last-updated {
    color: var(--light-text);
    font-size: 0.9rem;
}

footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Sections */
section {
    margin-bottom: 1.5rem;
}

/* Strong elements */
strong {
    font-weight: 600;
    color: var(--text-color);
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
}