:root {
    --bg: #f8fafc;
    --text: #111827;
    --muted: #6b7280;
    --accent: #2563eb;
    --border: #e5e7eb;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--bg);
    color: var(--text);
}
.container {
    width: min(960px, 92vw);
    margin: 0 auto;
    padding: 24px 0;
}
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}
.header-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.site-email {
    color: var(--muted);
    font-size: 0.9rem;
}
.header-cta {
    font-size: 0.95rem;
}
.logo {
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
}
.logo img {
    max-height: 48px;
}
.site-phone {
    font-weight: 600;
    color: var(--accent);
}
.site-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 0 16px;
    margin: 0;
}
.site-nav a {
    text-decoration: none;
    color: var(--text);
    padding: 6px 10px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--border);
}
.hero {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
}
.grid {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 12px;
}
.list a,
.grid a {
    text-decoration: none;
    color: var(--accent);
    font-weight: 600;
}
.content {
    margin: 16px 0 32px;
    line-height: 1.7;
}
.faq,
.cta {
    margin-top: 32px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
}
.faq ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.faq li {
    margin-bottom: 10px;
}
.btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
}
.pagination {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.pagination a,
.pagination .active {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
}
.pagination .active {
    background: var(--accent);
    color: #fff;
}
.site-footer {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    margin-top: 40px;
    background: #fff;
}
.footer-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.footer-text {
    color: var(--muted);
}
.footer-disclaimer {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.9rem;
}
.footer-meta {
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.footer-socials a {
    color: var(--accent);
    text-decoration: none;
}
.footer-menu-title {
    font-weight: 600;
    margin-bottom: 8px;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu li {
    margin-bottom: 6px;
}
.footer-menu a {
    color: var(--text);
    text-decoration: none;
}
.not-found {
    text-align: center;
    padding: 40px 0;
}
@media (max-width: 640px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
body.debug-mode {
  outline: 6px solid #00aaff !important;
}
