.document-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.document-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.document-date {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 40px;
}

.document-section {
    margin-bottom: 40px;
}

.document-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.document-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    margin-top: 20px;
}

.document-section p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.document-section ul {
    color: #a0a0a0;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 15px;
}

.document-section li {
    margin-bottom: 8px;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .document-container {
        padding: 30px 15px;
    }
    
    .document-title {
        font-size: 32px;
    }
    
    .document-date {
        font-size: 13px;
        margin-bottom: 30px;
    }
    
    .document-section {
        margin-bottom: 30px;
    }
    
    .document-section h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .document-section h3 {
        font-size: 18px;
        margin-bottom: 8px;
        margin-top: 15px;
    }
    
    .document-section p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    .document-section ul {
        font-size: 14px;
        line-height: 1.7;
        margin-left: 15px;
        margin-bottom: 12px;
    }
    
    .document-section li {
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .document-container {
        padding: 20px 10px;
    }
    
    .document-title {
        font-size: 28px;
    }
    
    .document-date {
        font-size: 12px;
    }
    
    .document-section h2 {
        font-size: 22px;
    }
    
    .document-section h3 {
        font-size: 16px;
    }
    
    .document-section p,
    .document-section ul {
        font-size: 13px;
    }
}
