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

body {
    font-family: Charter, 'Palatino Linotype', Palatino, Georgia, serif;
    line-height: 1.75;
    color: #1a1a1a;
    background: #fafafa;
    padding: 2rem 1rem;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header {
    border-bottom: 3px solid #c41e3a;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.breadcrumb a {
    color: #0052a5;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0052a5;
}

h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    border-bottom: 2px solid #c41e3a;
    padding-bottom: 0.5rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.2rem;
}

blockquote {
    border-left: 4px solid #c41e3a;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #444;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

li {
    margin-bottom: 0.5rem;
}

a {
    color: #0052a5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

strong {
    font-weight: 700;
    color: #1a1a1a;
}

em {
    font-style: italic;
}

code {
    background: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: Menlo, Monaco, 'Courier New', monospace;
    font-size: 0.9em;
}

pre {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 1.2rem;
}

pre code {
    background: none;
    padding: 0;
}

footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e5e5;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

footer a {
    color: #0052a5;
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}
