:root {
    --navy: #1B2A47;
    --navy-light: #2B4570;
    --red: #D90429;
    --bg-page: #F4F6F8;
    --text-main: #212529;
    --text-muted: #6C757D;
    --border-color: #E9ECEF;
}

body {
    background-color: var(--bg-page);
}

.document-wrapper {
    max-width: 960px;
    margin: 110px auto 80px;
    padding: 0 24px;
}

.document-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 60px 70px;
    box-shadow: 0 10px 30px rgba(27, 42, 71, 0.05);
    border: 1px solid var(--border-color);
}

.document-title-block {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 30px;
    margin-bottom: 40px;
}
.document-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--red);
    background: #FFF0F2;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.document-title-block h1 {
    font-size: 28px;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
}
.document-meta {
    font-size: 13px;
    color: var(--text-muted);
}

.document-body h2 {
    font-size: 20px;
    color: var(--navy);
    margin: 36px 0 16px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}
.document-body h2:first-of-type {
    border-top: none;
    margin-top: 0;
}
.document-body p {
    margin-bottom: 16px;
    font-size: 15px;
    color: #333A42;
    line-height: 1.7;
    text-align: justify;
}
.document-body ul, .document-body ol {
    margin: 12px 0 20px 24px;
    font-size: 15px;
    color: #333A42;
    line-height: 1.7;
}
.document-body li {
    margin-bottom: 8px;
}
.document-body strong {
    color: var(--navy);
}

.document-footer-block {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 768px) {
    .document-wrapper {
        margin: 90px auto 40px;
        padding: 0 12px;
    }
    .document-card {
        padding: 30px 20px;
        border-radius: 16px;
    }
    .document-title-block h1 {
        font-size: 22px;
    }
    .document-body p {
        text-align: left;
    }
}