
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
    font-weight: 700;
    color: #111;
    margin: 40px 0 20px;
    line-height: 1.3;
}
 h1 {
    font-size: clamp(28px, 2.5vw, 36px);
}
 h2 {
    font-size: clamp(24px, 2vw, 32px);
}
 h3 {
    font-size: clamp(20px, 1.8vw, 28px);
}
 h4 {
    font-size: clamp(18px, 1.6vw, 24px);
}
 h5 {
    font-size: clamp(16px, 1.4vw, 20px);
}
 h6 {
    font-size: clamp(14px, 1.2vw, 18px);
}
 ol,
 ul {
    margin: 24px 0;
    padding-left: 24px;
}
 ul {
    list-style-type: disc;
}
 ol {
    list-style-type: decimal;
}
 li {
    margin-bottom: 12px;
    line-height: 1.6;
}
 li:last-child {
    margin-bottom: 0;
}
 blockquote {
    border-left: 4px solid #000;
    margin: 24px 0;
    font-style: italic;
    color: #111;
    background: rgba(33, 150, 243, 0.05);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
}
 a {
    color: #001547;
    text-decoration: underline;
    transition: color 0.3s;
}
 a:hover {
    color: #001547;
}
 b,
 strong {
    font-weight: 700;
    color: #111;
}
 em,
 i {
    font-style: italic;
}
 code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: "Courier New", monospace;
    font-size: 0.9em;
}
 pre {
    background: #f5f5f5;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 24px 0;
}
 pre code {
    background: 0 0;
    padding: 0;
}
 table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
 td,
 th {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}
 th {
        background: #001547;
    color: #fff;
    font-weight: 600;
}
 tr:nth-child(2n) {
    background: #f9f9f9;
}
 tr:hover {
    background: #f0f0f0;
}
