body {
    background: var(--bg-lighter);
}

/* Контент */
.document-header {
    text-align: center;
    margin-bottom: 60px;
}

.last-updated {
    color: var(--text-light);
    font-size: 16px;
}

.document-content {
    background: white;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

h2:first-child {
    margin-top: 0;
}

p {
    margin-bottom: 16px;
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.7;
}

ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

li {
    margin-bottom: 12px;
    color: var(--text-medium);
    line-height: 1.7;
}

strong {
    color: var(--text-dark);
    font-weight: 600;
}

.info-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-blue);
    padding: 24px;
    margin: 32px 0;
    border-radius: 6px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0;
    margin-top: 80px;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .content {
        padding: 0 20px;
        margin: 100px auto 60px;
    }

    h1 {
        font-size: 36px;
    }

    .document-content {
        padding: 32px 24px;
    }

    h2 {
        font-size: 24px;
    }
}