* { box-sizing: border-box; }
body {
    background: #7a8aba;
    color: #21242e;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
}
a { color: #3d4f97; text-decoration: none; font-weight: 700; }
a:hover { text-decoration: underline; }

.hz-topbar {
    background: #21242e;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 4px 4px;
    border-bottom: 2px solid #3d4f97;
}
.hz-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    height: 28px;
}
.hz-logo { font-size: 15px; font-weight: 900; color: #ffffff; letter-spacing: 0.5px; }
.hz-logo span { color: #e48600; }
.hz-menu-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; }
.hz-menu-toggle span { width: 20px; height: 2px; background: #ecab37; }
@media (max-width: 900px) { .hz-menu-toggle { display: flex; } }

.hz-layout { max-width: 1200px; margin: 0 auto; padding: 24px; display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
@media (max-width: 900px) { .hz-layout { grid-template-columns: 1fr; } }

.hz-sidebar {
    background: #9fbee7;
    border: 2px solid #3d4f97;
    padding: 12px;
}
.hz-sidebar-title { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin: 0 0 8px; color: #21242e; }
.hz-sidebar-nav { list-style: none; padding: 0; margin: 0; }
.hz-sidebar-nav li a { display: block; padding: 6px 8px; color: #21242e; font-size: 12px; font-weight: 700; border-radius: 2px; }
.hz-sidebar-nav li a.active, .hz-sidebar-nav li a:hover { background: #ecab37; text-decoration: none; }
.hz-sidebar-note { margin-top: 16px; background: #ffffff; border: 1px solid #5a5f8c; padding: 8px; font-size: 10px; color: #21242e; border-radius: 4px; }

.hz-hero {
    background: #acace7;
    border: 2px solid #3d4f97;
    padding: 32px 24px;
    margin-bottom: 24px;
    position: relative;
}
.hz-hero h1 {
    font-family: Arial, sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 2px 2px 0 #3d4f97, -1px -1px 0 #3d4f97, 1px -1px 0 #3d4f97, -1px 1px 0 #3d4f97;
    margin: 0 0 12px;
    line-height: 1.1;
}
.hz-hero p { font-size: 14px; font-weight: 700; color: #21242e; max-width: 640px; margin: 0 0 16px; }

.hz-btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f68d1f;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
}
.hz-btn-arrow:hover { background: #e48600; color: #fff; text-decoration: none; }

.hz-section-label {
    background: #7a8aba;
    color: #21242e;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    margin: 0 0 12px;
    border: 1px solid #3d4f97;
}

.hz-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
@media (max-width: 900px) { .hz-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hz-card-grid { grid-template-columns: 1fr; } }

.hz-card { background: #ffffff; border: 2px solid #3d4f97; border-radius: 4px; overflow: hidden; display: block; color: #21242e; }
.hz-card:hover { text-decoration: none; border-color: #e60012; }
.hz-card img { width: 100%; height: 140px; object-fit: cover; display: block; border-bottom: 1px solid #5a5f8c; }
.hz-card-body { padding: 12px; }
.hz-card-body h3 { font-size: 14px; font-weight: 700; margin: 8px 0 6px; color: #21242e; line-height: 1.3; }
.hz-card-body p { font-size: 11px; color: #3d4f97; margin: 0; }
.hz-tag { display: inline-block; background: #ecab37; color: #21242e; font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }

.hz-breadcrumb { font-size: 11px; margin-bottom: 16px; color: #21242e; font-weight: 700; }
.hz-breadcrumb a { color: #21242e; }
.hz-breadcrumb-sep { margin: 0 6px; color: #3d4f97; }
.hz-breadcrumb-current { color: #3d4f97; }

.hz-toc {
    background: #dedede;
    border: 1px solid #5a5f8c;
    border-radius: 6px;
    padding: 12px 16px;
    margin: 20px 0;
}
.hz-toc-title { font-size: 11px; font-weight: 700; margin: 0 0 8px; }
.hz-toc a { display: block; padding: 3px 0; font-size: 12px; color: #3d4f97; }

.hz-prose h2 { font-size: 20px; font-weight: 900; margin: 28px 0 12px; color: #21242e; }
.hz-prose h3 { font-size: 15px; font-weight: 700; margin: 20px 0 8px; }
.hz-prose p { font-size: 13px; color: #21242e; margin: 0 0 12px; line-height: 1.5; }
.hz-prose img { width: 100%; border: 2px solid #3d4f97; border-radius: 4px; margin: 16px 0; }

.hz-faq-item { border-bottom: 1px dotted #60619c; padding: 10px 0; }
.hz-faq-item summary { cursor: pointer; font-weight: 700; font-size: 13px; list-style: none; color: #21242e; }
.hz-faq-item summary::-webkit-details-marker { display: none; }
.hz-faq-item summary::before { content: '▸ '; color: #f68d1f; }
.hz-faq-item[open] summary::before { content: '▾ '; }
.hz-faq-item p { margin: 8px 0 0; font-size: 12px; }

.hz-related { margin-top: 32px; }
.hz-related-card { background: #ffffff; border: 2px solid #3d4f97; border-radius: 4px; overflow: hidden; display: block; color: #21242e; }
.hz-related-card img { width: 100%; height: 100px; object-fit: cover; }
.hz-related-body { padding: 10px; }
.hz-related-body h3 { font-size: 12px; font-weight: 700; margin: 6px 0 0; }

.hz-footer { background: #21242e; color: #9fbee7; padding: 32px 0 16px; margin-top: 32px; }
.hz-footer-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; color: #ecab37; }
.hz-footer-list { list-style: none; padding: 0; margin: 0; }
.hz-footer-list li { margin-bottom: 6px; }
.hz-footer-list li a { color: #9fbee7; font-size: 12px; font-weight: 400; }
.hz-footer-disclaimer { font-size: 10px; color: #9fbee7; margin-top: 8px; }
.hz-footer-bottom { border-top: 1px solid #3d4f97; margin-top: 16px; padding-top: 16px; font-size: 10px; color: #9fbee7; }
.hz-footer-bottom p { margin: 4px 0; }

.hz-form-panel { background: #dedede; border-radius: 6px; padding: 16px; max-width: 480px; }
.hz-form-panel .form-label { font-size: 12px; font-weight: 700; color: #21242e; }
.hz-form-panel .form-control { border-radius: 2px; border: 1px solid #5a5f8c; font-size: 12px; }
.hz-confirm-msg { color: #21242e; margin-top: 12px; font-size: 12px; font-weight: 700; }
.hidden { display: none; }

.hz-cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 520px;
    margin: 0 auto;
    background: #21242e;
    color: #ffffff;
    border-radius: 6px;
    padding: 16px 20px;
    border: 2px solid #ecab37;
    z-index: 100;
}
.hz-cookie-banner p { font-size: 12px; margin: 0 0 12px; }
.hz-cookie-actions { display: flex; gap: 10px; }
.hz-cookie-actions button { border-radius: 2px; padding: 6px 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; cursor: pointer; border: none; }
.hz-cookie-accept { background: #f68d1f; color: #ffffff; }
.hz-cookie-reject { background: transparent; color: #ecab37; border: 1px solid #ecab37 !important; }

.hz-legal { max-width: 760px; margin: 0 auto; padding: 32px 24px; }
.hz-legal h1 { font-size: 26px; font-weight: 900; margin-bottom: 20px; color: #21242e; }
.hz-legal h2 { font-size: 16px; font-weight: 700; margin: 24px 0 10px; }
.hz-legal p { font-size: 13px; color: #21242e; margin: 0 0 12px; }

.hz-updates-log { background: #dedede; border: 1px solid #5a5f8c; border-radius: 6px; padding: 12px 16px; margin-bottom: 24px; }
.hz-updates-log-item { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dotted #60619c; font-size: 12px; }
.hz-updates-log-item:last-child { border-bottom: none; }
.hz-updates-log-date { color: #3d4f97; font-weight: 700; }
