:root {
    --brand-pink: #ec6d9c;
    --brand-purple: #5c4f84;
    --ink: #2b2b2b;
    --muted: #6b6b6b;
    --light: #f8f8f8;
    --border: #ececec;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.8;
    color: var(--ink);
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-size: 16px;
}

.site-topbar {
    background: var(--brand-purple);
    color: #fff;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
}

.site-masthead {
    background: var(--brand-pink);
    padding: 1.4rem 1.25rem;
    text-align: center;
}

.site-masthead .brand {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.site-masthead .tagline {
    color: rgba(255,255,255,0.92);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0.25rem 0 0;
}

.article-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 1rem;
}

h1, h2, h3 {
    font-family: "Montserrat", sans-serif;
}

h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    color: var(--brand-purple);
    font-weight: 700;
}

h1 + p {
    margin-top: 0;
}

.article-meta {
    color: var(--muted);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 3px solid var(--brand-pink);
    padding-bottom: 1.25rem;
    margin-bottom: 1.75rem;
}

h2 {
    font-size: 1.45rem;
    margin-top: 2.5rem;
    margin-bottom: 0.85rem;
    color: var(--brand-purple);
    font-weight: 600;
    padding-left: 0.75rem;
    border-left: 4px solid var(--brand-pink);
}

h3 {
    font-size: 1.12rem;
    margin-top: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--brand-pink);
    font-weight: 600;
}

p {
    margin-bottom: 1.15rem;
}

a {
    color: var(--brand-pink);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--brand-pink);
}

a:hover {
    color: var(--brand-purple);
    border-bottom-color: var(--brand-purple);
}

ul, ol {
    margin-bottom: 1.15rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.45rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.85rem 0;
    font-size: 0.92rem;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

th, td {
    border: 1px solid var(--border);
    padding: 0.8rem 0.9rem;
    text-align: left;
    vertical-align: top;
}

th {
    background: var(--brand-purple);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
}

tr:nth-child(even) td {
    background: var(--light);
}

strong {
    font-weight: 700;
    color: var(--brand-purple);
}

.faq-section {
    background: var(--light);
    border-radius: 8px;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
}

.faq-item {
    margin-bottom: 1.35rem;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 0.35rem;
    color: var(--brand-purple);
}

.site-footer {
    background: var(--brand-purple);
    color: rgba(255,255,255,0.9);
    text-align: center;
    padding: 1.75rem 1.25rem;
    margin-top: 3rem;
    font-size: 0.85rem;
    line-height: 1.7;
}

.site-footer strong {
    color: #fff;
    font-family: "Montserrat", sans-serif;
}

.site-footer .copyright {
    text-align: center;
    margin: 0.75rem 0 0;
}

.site-footer a {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.5);
}

.site-footer a:hover {
    color: var(--brand-pink);
    border-bottom-color: var(--brand-pink);
}

@media (max-width: 600px) {
    body { font-size: 15px; }
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.25rem; }
    .article-wrap { padding: 1.75rem 1rem 0.5rem; }
    table { font-size: 0.82rem; }
    th, td { padding: 0.55rem 0.5rem; }
}
