:root{
    --brand-blue: #1E3A8A;
    --brand-green: #10B981;
    --muted: #6B7280;
    --bg: #F8FAFC;
    --card: #FFFFFF;
    --max-width: 900px;
    --radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
body {
    margin: 0;
    background: var(--bg);
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    -webkit-font-smoothing: antialiased;
}
.container {
    width: 100%;
    max-width: var(--max-width);
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 6px 20px rgba(16,24,40,0.06);
    padding: 28px;
}
header {
    display:flex;
    gap:16px;
    align-items:center;
    margin-bottom: 8px;
}
header img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 10px;
    background: white;
    padding: 6px;
}
h1 {
    margin: 0;
    font-size: 20px;
    color: var(--brand-blue);
}
.subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}
hr { border: none; height: 1px; background: #EEF2FF; margin: 18px 0; }
h2 {
    color: var(--brand-blue);
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 8px;
}
p { margin: 0 0 12px 0; line-height: 1.5; color: #111827; }
ul { margin: 0 0 12px 20px; color: #111827; }
.note {
    background: #F0FDF4;
    border-left: 4px solid var(--brand-green);
    padding: 10px 12px;
    border-radius: 8px;
    color: #054E28;
    margin: 12px 0;
}
footer {
    margin-top: 18px;
    font-size: 13px;
    color: var(--muted);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
}
.contact {
    color: var(--brand-blue);
    text-decoration: none;
}
